]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blame - make/patches/make-4.0-newlines.patch
make: Update to version 4.0
[people/ms/ipfire-3.x.git] / make / patches / make-4.0-newlines.patch
CommitLineData
e6aa4d74
MT
1diff -Nrup a/job.c b/job.c
2--- a/job.c 2014-02-03 18:23:45.936436714 -0500
3+++ b/job.c 2014-02-04 00:17:53.232074893 -0500
4@@ -3269,13 +3269,14 @@ construct_command_argv_internal (char *l
5 #endif
6 if (PRESERVE_BSNL)
7 {
8- *(ap++) = '\\';
9+ *(ap++) = '\'';
10 /* Only non-batch execution needs another backslash,
11 because it will be passed through a recursive
12 invocation of this function. */
13 if (!batch_mode_shell)
14 *(ap++) = '\\';
15 *(ap++) = '\n';
16+ *(ap++) = '\'';
17 }
18 ++p;
19 continue;