summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/bash/bash-4.2/execute_cmd.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/bash/bash-4.2/execute_cmd.patch')
-rw-r--r--meta/recipes-extended/bash/bash-4.2/execute_cmd.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/recipes-extended/bash/bash-4.2/execute_cmd.patch b/meta/recipes-extended/bash/bash-4.2/execute_cmd.patch
new file mode 100644
index 0000000000..bd55787e74
--- /dev/null
+++ b/meta/recipes-extended/bash/bash-4.2/execute_cmd.patch
@@ -0,0 +1,15 @@
1--- execute_cmd.c.orig Fri Jun 3 13:34:42 2011
2+++ execute_cmd.c Fri Jun 3 13:36:41 2011
3@@ -2202,7 +2202,11 @@
4 /* If the `lastpipe' option is set with shopt, and job control is not
5 enabled, execute the last element of non-async pipelines in the
6 current shell environment. */
7- if (lastpipe_opt && job_control == 0 && asynchronous == 0 && pipe_out == NO_PIPE && prev > 0)
8+ if (lastpipe_opt &&
9+#if defined(JOB_CONTROL)
10+ job_control == 0 &&
11+#endif
12+ asynchronous == 0 && pipe_out == NO_PIPE && prev > 0)
13 {
14 lstdin = move_to_high_fd (0, 0, 255);
15 if (lstdin > 0)