From: Andreas Oberritter Date: Thu, 21 Oct 2010 22:49:13 +0000 (+0000) Subject: */Makefile.am: fix `:='-style assignments are not portable X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=234ccdf6534598dc52f2926f2deb3a1dc960af88 */Makefile.am: fix `:='-style assignments are not portable --- diff --git a/lib/python/Plugins/Extensions/DVDPlayer/src/Makefile.am b/lib/python/Plugins/Extensions/DVDPlayer/src/Makefile.am index 27c751c..fdd9c3e 100644 --- a/lib/python/Plugins/Extensions/DVDPlayer/src/Makefile.am +++ b/lib/python/Plugins/Extensions/DVDPlayer/src/Makefile.am @@ -1,4 +1,4 @@ -OBJS := servicedvd.cpp +OBJS = servicedvd.cpp -include $(OBJS:.cpp=.d) diff --git a/po/Makefile.am b/po/Makefile.am index ba04440..2c8a52c 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 \