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.mk | |
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.mk')
-rw-r--r-- | package/bash/bash.mk | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/package/bash/bash.mk b/package/bash/bash.mk index 387c3e930b..401f1f2fbe 100644 --- a/package/bash/bash.mk +++ b/package/bash/bash.mk @@ -4,17 +4,19 @@ # ################################################################################ -BASH_VERSION = 4.2 +BASH_VERSION = 4.3 BASH_SITE = $(BR2_GNU_MIRROR)/bash -BASH_DEPENDENCIES = ncurses host-bison +BASH_DEPENDENCIES = ncurses readline host-bison +BASH_CONF_OPT = --with-installed-readline BASH_LICENSE = GPLv3+ BASH_LICENSE_FILES = COPYING -BASH_CONF_ENV += \ - bash_cv_job_control_missing=present \ - bash_cv_sys_named_pipes=present \ - bash_cv_func_sigsetjmp=present \ - bash_cv_printf_a_format=yes +BASH_CONF_ENV += \ + ac_cv_rl_version="$(READLINE_VERSION)" \ + bash_cv_job_control_missing=present \ + bash_cv_sys_named_pipes=present \ + bash_cv_func_sigsetjmp=present \ + bash_cv_printf_a_format=yes # Parallel build sometimes fails because some of the generator tools # are built twice (i.e. while executing). |