From cad821904950cd379459f816d27bad165b5735bd Mon Sep 17 00:00:00 2001 From: Julien Rioux Date: Sun, 7 Jul 2013 20:10:40 +0200 Subject: [PATCH] Build: Small dependency fix (issue 3442). This sets the dependency of texi files more accurately and it rids us of strange errors like the following from building the zh doc: Must remake target `web.texi'. Ignoring VPATH name `~/git/lilypond/Documentation/zh/web.texi'. Successfully remade target file `web.texi'. [...] Finished prerequisites of target file `out-www/web.texi'. Must remake target `out-www/web.texi'. mkdir -p out-www/ ( echo ./out-www/web.texi: > out-www/web.dep ) && cp -f web.texi out-www/web.texi cp: cannot stat `web.texi': No such file or directory make[1]: *** [out-www/web.texi] Error 1 --- make/doc-i18n-root-vars.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/doc-i18n-root-vars.make b/make/doc-i18n-root-vars.make index 2b2242427b..e279c6d88d 100644 --- a/make/doc-i18n-root-vars.make +++ b/make/doc-i18n-root-vars.make @@ -4,7 +4,7 @@ LANGS = $(shell $(PYTHON) $(top-src-dir)/python/langdefs.py) TELY_FILES := $(call src-wildcard,*.tely) TEXI_FILES := $(call src-wildcard,*.texi) -MASTER_TEXI_FILES := $(TEXI_FILES) $(TELY_FILES:%.tely=$(outdir)/%.texi) +MASTER_TEXI_FILES := $(TEXI_FILES:%=$(outdir)/%) $(TELY_FILES:%.tely=$(outdir)/%.texi) TEXINFO_MANUALS =\ $(TELY_FILES:%.tely=%)\ -- 2.39.2