bc092b9
From c2ea443446b7feea868e54f94a87781f69820375 Mon Sep 17 00:00:00 2001
bc092b9
From: Vladimir Serbinenko <phcoder@gmail.com>
bc092b9
Date: Mon, 23 Jan 2017 00:55:30 +0300
6f1e3d5
Subject: [PATCH 007/198] Use $(SHELL) rather than /bin/sh.
bc092b9
bc092b9
/bin/sh doesn't exist under termux.
bc092b9
---
bc092b9
 grub-core/Makefile.am | 2 +-
bc092b9
 1 file changed, 1 insertion(+), 1 deletion(-)
bc092b9
bc092b9
diff --git a/grub-core/Makefile.am b/grub-core/Makefile.am
bc092b9
index 04e9395fd..809a8aa26 100644
bc092b9
--- a/grub-core/Makefile.am
bc092b9
+++ b/grub-core/Makefile.am
bc092b9
@@ -278,7 +278,7 @@ BUILT_SOURCES += symlist.h
bc092b9
 
bc092b9
 symlist.c: symlist.h gensymlist.sh
bc092b9
 	$(TARGET_CPP) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS_KERNEL) $(CPPFLAGS) -DGRUB_SYMBOL_GENERATOR=1 symlist.h > symlist.p || (rm -f symlist.p; exit 1)
bc092b9
-	cat symlist.p | /bin/sh $(srcdir)/gensymlist.sh $(top_builddir)/config.h $(KERNEL_HEADER_FILES) >$@ || (rm -f $@; exit 1)
bc092b9
+	cat symlist.p | $(SHELL) $(srcdir)/gensymlist.sh $(top_builddir)/config.h $(KERNEL_HEADER_FILES) >$@ || (rm -f $@; exit 1)
bc092b9
 	rm -f symlist.p
bc092b9
 CLEANFILES += symlist.c
bc092b9
 BUILT_SOURCES += symlist.c
bc092b9
-- 
da63b36
2.14.3
bc092b9