Blame SOURCES/make-4.0-newlines.patch

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