diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-02-27 17:58:59 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-01 14:47:17 +0100 |
commit | 3f5061a02df6e2c8166840241fa29c9ca52354f9 (patch) | |
tree | ecc56dd8e85855c1829e92295a41d9eb96aa56ac /package/bash/bash-4.2-019.patch | |
parent | 6a4d524dc28156434648e74f3cc6072fb06b98d3 (diff) | |
download | buildroot-3f5061a02df6e2c8166840241fa29c9ca52354f9.tar.gz buildroot-3f5061a02df6e2c8166840241fa29c9ca52354f9.zip |
bash: bump to version 4.3
Switch to external readline support to potentially reduce target size.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/bash/bash-4.2-019.patch')
-rw-r--r-- | package/bash/bash-4.2-019.patch | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/package/bash/bash-4.2-019.patch b/package/bash/bash-4.2-019.patch deleted file mode 100644 index 01603a933a..0000000000 --- a/package/bash/bash-4.2-019.patch +++ /dev/null @@ -1,47 +0,0 @@ - BASH PATCH REPORT - ================= - -Bash-Release: 4.2 -Patch-ID: bash42-019 - -Bug-Reported-by: Diego Augusto Molina <diegoaugustomolina@gmail.com> -Bug-Reference-ID: <CAGOxLdHcSQu3ck9Qy3pRjj_NBU5tAPSAvNm-95-nLQ9Szwb6aA@mail.gmail.com> -Bug-Reference-URL: lists.gnu.org/archive/html/bug-bash/2011-09/msg00047.html - -Bug-Description: - -Using `declare' with attributes and an invalid array variable name or -assignment reference resulted in a segmentation fault instead of a -declaration error. - -Patch (apply with `patch -p0'): - -*** ../bash-4.2-patched/builtins/declare.def 2010-05-30 18:25:21.000000000 -0400 ---- ./builtins/declare.def 2011-09-15 15:20:20.000000000 -0400 -*************** -*** 514,517 **** ---- 514,522 ---- - var = assign_array_element (name, value, 0); /* XXX - not aflags */ - *subscript_start = '\0'; -+ if (var == 0) /* some kind of assignment error */ -+ { -+ assign_error++; -+ NEXT_VARIABLE (); -+ } - } - else if (simple_array_assign) -*** ../bash-4.2-patched/patchlevel.h Sat Jun 12 20:14:48 2010 ---- ./patchlevel.h Thu Feb 24 21:41:34 2011 -*************** -*** 26,30 **** - looks for to find the patch level (for the sccs version string). */ - -! #define PATCHLEVEL 18 - - #endif /* _PATCHLEVEL_H_ */ ---- 26,30 ---- - looks for to find the patch level (for the sccs version string). */ - -! #define PATCHLEVEL 19 - - #endif /* _PATCHLEVEL_H_ */ |