configs/olimex_imx233_olinuxino: readme: Adjust the generated file names
[buildroot-gz.git] / package / bash / 0037-patchlevel-37.patch
blob5f8aff356c47e8c625305fb5fcc1e413661ece02
1 From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-037
3 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
5 BASH PATCH REPORT
6 =================
8 Bash-Release: 4.3
9 Patch-ID: bash43-037
11 Bug-Reported-by: Greg Wooledge <wooledg@eeg.ccf.org>
12 Bug-Reference-ID: <20150204144240.GN13956@eeg.ccf.org>
13 Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2015-02/msg00007.html
15 Bug-Description:
17 If an associative array uses `@' or `*' as a subscript, `declare -p' produces
18 output that cannot be reused as input.
20 Patch (apply with `patch -p0'):
22 *** a/bash-4.3-patched/assoc.c 2011-11-05 16:39:05.000000000 -0400
23 --- b/assoc.c 2015-02-04 15:28:25.000000000 -0500
24 ***************
25 *** 437,440 ****
26 --- 440,445 ----
27 if (sh_contains_shell_metas (tlist->key))
28 istr = sh_double_quote (tlist->key);
29 + else if (ALL_ELEMENT_SUB (tlist->key[0]) && tlist->key[1] == '\0')
30 + istr = sh_double_quote (tlist->key);
31 else
32 istr = tlist->key;
33 *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500
34 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400
35 ***************
36 *** 26,30 ****
37 looks for to find the patch level (for the sccs version string). */
39 ! #define PATCHLEVEL 36
41 #endif /* _PATCHLEVEL_H_ */
42 --- 26,30 ----
43 looks for to find the patch level (for the sccs version string). */
45 ! #define PATCHLEVEL 37
47 #endif /* _PATCHLEVEL_H_ */