From 9e95c34e0ecaa573c5ea8b447e798b11d109e9cd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Arkadiusz=20Mi=C5=9Bkiewicz?= Date: Mon, 10 May 2010 20:24:01 +0200 Subject: [PATCH] unbreak make update-po MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- include/buildrules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; \ -- 2.47.2