]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blob - make/patches/make-4.0-newlines.patch
make: Update to version 4.0
[people/arne_f/ipfire-3.x.git] / make / patches / make-4.0-newlines.patch
1 diff -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;