Blame SOURCES/make-4.0-newlines.patch

f55833
diff -Nrup a/job.c b/job.c
f55833
--- a/job.c	2014-02-03 18:23:45.936436714 -0500
f55833
+++ b/job.c	2014-02-04 00:17:53.232074893 -0500
f55833
@@ -3269,13 +3269,14 @@ construct_command_argv_internal (char *l
f55833
 #endif
f55833
             if (PRESERVE_BSNL)
f55833
               {
f55833
-                *(ap++) = '\\';
f55833
+                *(ap++) = '\'';
f55833
                 /* Only non-batch execution needs another backslash,
f55833
                    because it will be passed through a recursive
f55833
                    invocation of this function.  */
f55833
                 if (!batch_mode_shell)
f55833
                   *(ap++) = '\\';
f55833
                 *(ap++) = '\n';
f55833
+                *(ap++) = '\'';
f55833
               }
f55833
             ++p;
f55833
             continue;