From: Arkadiusz Miśkiewicz Date: Mon, 10 May 2010 18:24:01 +0000 (+0200) Subject: unbreak make update-po X-Git-Tag: v3.1.3~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e95c34e0ecaa573c5ea8b447e798b11d109e9cd;p=thirdparty%2Fxfsprogs-dev.git unbreak make update-po Unbreak make update-po. Was causing: "/bin/sh: ../po/pl.po: cannot execute - Permission denied" Signed-off-by: Arkadiusz Miśkiewicz Signed-off-by: Christoph Hellwig --- diff --git a/include/buildrules b/include/buildrules index beb469b69..77d4c1a4a 100644 --- a/include/buildrules +++ b/include/buildrules @@ -66,7 +66,7 @@ $(POTHEAD): $(XGETTEXTFILES) # Update translations update-po: $(POTHEAD) $(wildcard $(TOPDIR)/po/*.po) - catalogs=$(wildcard $(TOPDIR)/po/*.po); \ + catalogs="$(wildcard $(TOPDIR)/po/*.po)"; \ for cat in $$catalogs; do \ lang=`basename $$cat .po`; \ mv $$lang.po $$lang.old.po; \