2009-11-24 Felix Zielcke <fzielcke@z-51.de>

* util/Makefile.in (install-local): Fix the use of $lang shell variable.
This commit is contained in:
Felix Zielcke 2009-11-24 19:44:24 +01:00
parent 8e2532fd0f
commit 26bec39d67
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2009-11-24 Felix Zielcke <fzielcke@z-51.de>
* util/Makefile.in (install-local): Fix the use of $lang shell variable.
2009-11-24 Felix Zielcke <fzielcke@z-51.de>
* util/Makefile.in (install-local): Convert a make `$(foreach)'

View File

@ -312,11 +312,11 @@ install-local: all
done
@langs='$(LINGUAS)'; \
for lang in $$langs; do \
$(SHELL) $(mkinstalldirs) $(DESTDIR)/$(datadir)/locale/$(lang)/LC_MESSAGES \
list='po/$(liang).mo'; \
$(SHELL) $(mkinstalldirs) $(DESTDIR)/$(datadir)/locale/$$lang/LC_MESSAGES \
list='po/$$lang.mo'; \
for file in $$list; do \
if test -f "$$file"; then dir=; else dir="$(srcdir)/"; fi; \
$(INSTALL_DATA) $$dir$$file $(DESTDIR)/$(datadir)/locale/$(lang)/LC_MESSAGES/$(PACKAGE).mo; \
$(INSTALL_DATA) $$dir$$file $(DESTDIR)/$(datadir)/locale/$$lang/LC_MESSAGES/$(PACKAGE).mo; \
done \
done
$(SHELL) $(mkinstalldirs) $(DESTDIR)$(infodir)