Blame SOURCES/make-4.0-newlines.patch

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