Blame SOURCES/make-4.2-newlines.patch

b7955a
diff -Nrup a/job.c b/job.c
b7955a
--- a/job.c	2016-05-21 16:22:32.000000000 -0400
b7955a
+++ b/job.c	2017-06-11 09:44:05.330432768 -0400
b7955a
@@ -3144,13 +3144,14 @@ construct_command_argv_internal (char *l
b7955a
 #endif
b7955a
             if (PRESERVE_BSNL)
b7955a
               {
b7955a
-                *(ap++) = '\\';
b7955a
+                *(ap++) = '\'';
b7955a
                 /* Only non-batch execution needs another backslash,
b7955a
                    because it will be passed through a recursive
b7955a
                    invocation of this function.  */
b7955a
                 if (!batch_mode_shell)
b7955a
                   *(ap++) = '\\';
b7955a
                 *(ap++) = '\n';
b7955a
+                *(ap++) = '\'';
b7955a
               }
b7955a
             ++p;
b7955a
             continue;