From: Vladimir Serbinenko Date: Sun, 22 Jan 2017 21:55:30 +0000 (+0300) Subject: Use $(SHELL) rather than /bin/sh. X-Git-Tag: grub-2.04-rc1~307 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2ea443446b7feea868e54f94a87781f69820375;p=thirdparty%2Fgrub.git Use $(SHELL) rather than /bin/sh. /bin/sh doesn't exist under termux. --- diff --git a/grub-core/Makefile.am b/grub-core/Makefile.am index 04e9395fd..809a8aa26 100644 --- a/grub-core/Makefile.am +++ b/grub-core/Makefile.am @@ -278,7 +278,7 @@ BUILT_SOURCES += symlist.h symlist.c: symlist.h gensymlist.sh $(TARGET_CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS_KERNEL) $(CPPFLAGS) -DGRUB_SYMBOL_GENERATOR=1 symlist.h > symlist.p || (rm -f symlist.p; exit 1) - cat symlist.p | /bin/sh $(srcdir)/gensymlist.sh $(top_builddir)/config.h $(KERNEL_HEADER_FILES) >$@ || (rm -f $@; exit 1) + cat symlist.p | $(SHELL) $(srcdir)/gensymlist.sh $(top_builddir)/config.h $(KERNEL_HEADER_FILES) >$@ || (rm -f $@; exit 1) rm -f symlist.p CLEANFILES += symlist.c BUILT_SOURCES += symlist.c