]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-11-21 Felix Zielcke <fzielcke@z-51.de>
authorFelix Zielcke <fzielcke@z-51.de>
Sat, 21 Nov 2009 22:23:35 +0000 (23:23 +0100)
committerFelix Zielcke <fzielcke@z-51.de>
Sat, 21 Nov 2009 22:23:35 +0000 (23:23 +0100)
* Makefile.in (target): Use make's builtin $(shell) function
instead of calling directly $(SHELL) to create the locale directories,
inside the $(foreach) function.

ChangeLog
Makefile.in

index 2e6ab2bdc16499935153355781436a6a5313f604..e9b054d0c472d9bd90496a49e9cd7350a8baf78c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * util/grub-mkrescue.in: Print an error and usage if output option
index edc6c3853d216c4cdb195e28a105cdfe2eb40eed..d9f107bef69e0b3a22774938366827eda86b78db 100644 (file)
@@ -309,7 +309,7 @@ install-local: all
          $(INSTALL_DATA) $$dir$$file $(DESTDIR)$(libdir)/grub/$$dest; \
        done
        $(foreach lang, $(LINGUAS), \
-       $(SHELL) $(mkinstalldirs) $(DESTDIR)/$(datadir)/locale/$(lang)/LC_MESSAGES \
+       $(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; \