diff options
author | Julien Rioux <julien.rioux@gmail.com> | 2013-07-07 20:10:40 +0200 |
---|---|---|
committer | Julien Rioux <jrioux@physics.utoronto.ca> | 2013-07-18 10:21:53 -0400 |
commit | cad821904950cd379459f816d27bad165b5735bd (patch) | |
tree | eeb03e0e65592f90980aebe412c8cfa3eb31a224 | |
parent | 00608c9fd2b35e0c0bca967ea2e5b4c9b1f058da (diff) |
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
-rw-r--r-- | make/doc-i18n-root-vars.make | 2 |
1 files changed, 1 insertions, 1 deletions
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=%)\ |