diff options
author | Julien Rioux <jrioux@physics.utoronto.ca> | 2012-02-21 05:25:50 -0500 |
---|---|---|
committer | Julien Rioux <jrioux@physics.utoronto.ca> | 2012-02-22 09:11:57 -0500 |
commit | d7f915509a80b06e2788e89de28f7fae6d2ac71a (patch) | |
tree | 437b23ecab6a05120c21010554e7ece1ca358283 /Documentation/po | |
parent | a6eae16f672eba5b33e783481d6a9f94502b50e0 (diff) |
Build: Don't use immediate expansion of variable.
For out-of-source builds, get rid of this warning:
ls: cannot access ../../Documentation/snippets/*.ly: No such file
Diffstat (limited to 'Documentation/po')
-rw-r--r-- | Documentation/po/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/po/GNUmakefile b/Documentation/po/GNUmakefile index 9849b93546..7fe191f1d5 100644 --- a/Documentation/po/GNUmakefile +++ b/Documentation/po/GNUmakefile @@ -12,7 +12,7 @@ DOC_PO_SOURCES = python/auxiliar/postprocess_html.py \ scripts/auxiliar/tely-gettext.py scripts/auxiliar/translations-status.py TELY_FILES = $(shell ls $(depth)/Documentation/*.tely) TELY_FILES += $(foreach l, $(LANGS), $(shell ls $(depth)/Documentation/$(l)/*.tely)) -LSR_LYS := $(shell ls $(depth)/Documentation/snippets/*.ly) +LSR_LYS = $(shell ls $(depth)/Documentation/snippets/*.ly) TELY_FILES += $(LSR_LYS:%.ly=../%.ly) messages: $(outdir)/messages |