diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-03-03 18:55:57 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-05 15:50:20 +0000 |
| commit | a1632697254fab3ca56f364e3866b2b5530ea9a2 (patch) | |
| tree | a8900281ab7911ef4e519931ff422149ee3ad8bd /meta/recipes-extended/bash/bash-4.2/execute_cmd.patch | |
| parent | f874ac6e873e3d2195b671d9eea24aca3ff69cbd (diff) | |
| download | poky-a1632697254fab3ca56f364e3866b2b5530ea9a2.tar.gz | |
bash: upgrade to 4.3
The bash-4.2-patches is obsolete.
(From OE-Core rev: 31eb09a888729fcfd17d02f2a47375e10e87f79a)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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.patch | 17 |
1 files changed, 0 insertions, 17 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 deleted file mode 100644 index 81f8f0a9cd..0000000000 --- a/meta/recipes-extended/bash/bash-4.2/execute_cmd.patch +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | Upstream-Status: Inappropriate [embedded specific] | ||
| 2 | |||
| 3 | --- execute_cmd.c.orig Fri Jun 3 13:34:42 2011 | ||
| 4 | +++ execute_cmd.c Fri Jun 3 13:36:41 2011 | ||
| 5 | @@ -2202,7 +2202,11 @@ | ||
| 6 | /* If the `lastpipe' option is set with shopt, and job control is not | ||
| 7 | enabled, execute the last element of non-async pipelines in the | ||
| 8 | current shell environment. */ | ||
| 9 | - if (lastpipe_opt && job_control == 0 && asynchronous == 0 && pipe_out == NO_PIPE && prev > 0) | ||
| 10 | + if (lastpipe_opt && | ||
| 11 | +#if defined(JOB_CONTROL) | ||
| 12 | + job_control == 0 && | ||
| 13 | +#endif | ||
| 14 | + asynchronous == 0 && pipe_out == NO_PIPE && prev > 0) | ||
| 15 | { | ||
| 16 | lstdin = move_to_high_fd (0, 0, 255); | ||
| 17 | if (lstdin > 0) | ||
