Blame SOURCES/make-4.0-newlines.patch

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