Blame SOURCES/make-4.0-weird-shell.patch

f55833
diff -up make-3.82/job.c\~ make-3.82/job.c
f55833
--- make-3.82/job.c~	2010-08-11 16:13:33.000000000 +0200
f55833
+++ make-3.82/job.c	2010-08-12 14:20:08.000000000 +0200
f55833
@@ -2442,7 +2442,11 @@ construct_command_argv_internal (char *l
f55833
 
f55833
   /* See if it is safe to parse commands internally.  */
f55833
   if (shell == 0)
f55833
-    shell = default_shell;
f55833
+    {
f55833
+      shell = default_shell;
f55833
+      if (shellflags == 0)
f55833
+	shellflags = "-c";
f55833
+    }
f55833
 #ifdef WINDOWS32
f55833
   else if (strcmp (shell, default_shell))
f55833
   {