From d7f915509a80b06e2788e89de28f7fae6d2ac71a Mon Sep 17 00:00:00 2001 From: Julien Rioux Date: Tue, 21 Feb 2012 05:25:50 -0500 Subject: [PATCH] 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 --- Documentation/po/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2