From 7b6e24623673f5fa220f9f988e82e479611ab00b Mon Sep 17 00:00:00 2001 From: Packit Service Date: Dec 09 2020 21:46:44 +0000 Subject: Apply patch make-4.0-newlines.patch patch_name: make-4.0-newlines.patch present_in_specfile: true location_in_specfile: 2 --- diff --git a/job.c b/job.c index f3a9fdb..2df0eba 100644 --- a/job.c +++ b/job.c @@ -3144,13 +3144,14 @@ construct_command_argv_internal (char *line, char **restp, const char *shell, #endif if (PRESERVE_BSNL) { - *(ap++) = '\\'; + *(ap++) = '\''; /* Only non-batch execution needs another backslash, because it will be passed through a recursive invocation of this function. */ if (!batch_mode_shell) *(ap++) = '\\'; *(ap++) = '\n'; + *(ap++) = '\''; } ++p; continue;