summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-01-17 13:53:32 +0000
committerJim Meyering <jim@meyering.net>1999-01-17 13:53:32 +0000
commitf5f0c17fe9fc1d6a32a13172144863e53f1a30d2 (patch)
treec203111cc3b596a64ed3cd3fd04b9b4330da4b74
parentd34ec088163d06764549fe0e2419019d7c8dca35 (diff)
downloadcoreutils-f5f0c17fe9fc1d6a32a13172144863e53f1a30d2.tar.xz
Add SHELL = /bin/sh.
-rw-r--r--GNUmakefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 861ce8e38..0f4e21c69 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -4,6 +4,10 @@
# It is necessary if you want to build targets usually of interest
# only to the maintainer.
+# 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.
+SHELL = /bin/sh
+
have-Makefile := $(shell test -f Makefile && echo yes)
# If the user runs GNU make but has not yet run ./configure,