From Ilya Zakharevich.
+2003-04-08 Akim Demaille <akim@epita.fr>
+
+ * GNUmakefile (SHELL): Don't assume sh is in /bin/.
+ From Ilya Zakharevich.
+
2003-04-08 Akim Demaille <akim@epita.fr>
* doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
# Systems where /bin/sh is not the default shell need this. The $(shell)
# command below won't work with e.g. stock DOS/Windows shells.
+ifeq ($(wildcard /bin/s[h]),/bin/sh)
SHELL = /bin/sh
+else
+# will be used only with the next shell-test line, then overwritten
+# by a configured-in value
+SHELL = sh
+endif
have-Makefile := $(shell test -f Makefile && echo yes)
H.J. Lu hjl@gnu.org
H. Merijn Brand h.m.brand@hccnet.nl
Ian Lance Taylor ian@cygnus.com
+Ilya Zakharevich ilya@Math.Berkeley.EDU
James A. Lupo lupoja@feynman.ml.wpafb.af.mil
Jason Molenda jsm@cygnus.com
Jeff Garzik jgarzik@pobox.com