aboutsummaryrefslogtreecommitdiff
path: root/po/Makefile.am
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-10-21 22:49:13 +0000
committerAndreas Oberritter <obi@opendreambox.org>2010-11-16 16:08:51 +0100
commit234ccdf6534598dc52f2926f2deb3a1dc960af88 (patch)
treecb05407a52825426ad8e25f8ee48740587514da6 /po/Makefile.am
parent7ff071c7f0df631ca273d7f29472f8b5568818f9 (diff)
downloadenigma2-234ccdf6534598dc52f2926f2deb3a1dc960af88.tar.gz
enigma2-234ccdf6534598dc52f2926f2deb3a1dc960af88.zip
*/Makefile.am: fix `:='-style assignments are not portable
Diffstat (limited to 'po/Makefile.am')
-rwxr-xr-xpo/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/po/Makefile.am b/po/Makefile.am
index ba044409..2c8a52cf 100755
--- a/po/Makefile.am
+++ b/po/Makefile.am
@@ -5,9 +5,9 @@ GETTEXT=xgettext
#MSGFMT = ./msgfmt.py
MSGFMT = msgfmt
-LANGS := $(shell cat $(srcdir)/LINGUAS)
-LANGPO := $(foreach LANG, $(LANGS),$(LANG).po)
-LANGMO := $(foreach LANG, $(LANGS),$(LANG).mo)
+LANGS = $(shell cat $(srcdir)/LINGUAS)
+LANGPO = $(foreach LANG, $(LANGS),$(LANG).po)
+LANGMO = $(foreach LANG, $(LANGS),$(LANG).mo)
default: enigma2.pot $(LANGMO)
for lang in $(LANGS); do \