2009-11-21 Felix Zielcke <fzielcke@z-51.de>
* Makefile.in (target): Use make's builtin $(shell) function instead of calling directly $(SHELL) to create the locale directories, inside the $(foreach) function.
This commit is contained in:
parent
74ff1dd52b
commit
26a61d6a59
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2009-11-21 Felix Zielcke <fzielcke@z-51.de>
|
||||||
|
|
||||||
|
* Makefile.in (target): Use make's builtin $(shell) function
|
||||||
|
instead of calling directly $(SHELL) to create the locale directories,
|
||||||
|
inside the $(foreach) function.
|
||||||
|
|
||||||
2009-11-21 Felix Zielcke <fzielcke@z-51.de>
|
2009-11-21 Felix Zielcke <fzielcke@z-51.de>
|
||||||
|
|
||||||
* util/grub-mkrescue.in: Print an error and usage if output option
|
* util/grub-mkrescue.in: Print an error and usage if output option
|
||||||
|
|
|
@ -309,7 +309,7 @@ install-local: all
|
||||||
$(INSTALL_DATA) $$dir$$file $(DESTDIR)$(libdir)/grub/$$dest; \
|
$(INSTALL_DATA) $$dir$$file $(DESTDIR)$(libdir)/grub/$$dest; \
|
||||||
done
|
done
|
||||||
$(foreach lang, $(LINGUAS), \
|
$(foreach lang, $(LINGUAS), \
|
||||||
$(SHELL) $(mkinstalldirs) $(DESTDIR)/$(datadir)/locale/$(lang)/LC_MESSAGES \
|
$(shell $(mkinstalldirs) $(DESTDIR)/$(datadir)/locale/$(lang)/LC_MESSAGES) \
|
||||||
@list='po/$(lang).mo'; \
|
@list='po/$(lang).mo'; \
|
||||||
for file in $$list; do \
|
for file in $$list; do \
|
||||||
if test -f "$$file"; then dir=; else dir="$(srcdir)/"; fi; \
|
if test -f "$$file"; then dir=; else dir="$(srcdir)/"; fi; \
|
||||||
|
|
Loading…
Reference in a new issue