X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/3cc4ef712eecd6723efccb686cbfa76c74e224fb..0c6be16535cc3fb0a13cc1eb89897b6cecff33b4:/packages/bash/build.sh diff --git a/packages/bash/build.sh b/packages/bash/build.sh index 0c79cd7e..081daac9 100755 --- a/packages/bash/build.sh +++ b/packages/bash/build.sh @@ -2,11 +2,18 @@ TERMUX_PKG_HOMEPAGE=http://www.gnu.org/software/bash/ TERMUX_PKG_DESCRIPTION="A sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh)" TERMUX_PKG_DEPENDS="ncurses, readline, libandroid-support, termux-tools, command-not-found" _MAIN_VERSION=4.3 -_PATCH_VERSION=39 +_PATCH_VERSION=42 TERMUX_PKG_VERSION=${_MAIN_VERSION}.${_PATCH_VERSION} -TERMUX_PKG_BUILD_REVISION=4 +TERMUX_PKG_BUILD_REVISION=7 TERMUX_PKG_SRCURL=http://ftp.gnu.org/gnu/bash/bash-${_MAIN_VERSION}.tar.gz TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-multibyte --without-bash-malloc --with-installed-readline ac_cv_header_grp_h=no ac_cv_header_pwd_h=no ac_cv_rl_version=6.3" +TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_job_control_missing=present" +TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_sys_siglist=yes" +TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_func_sigsetjmp=present" +TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_unusable_rtsigs=no" +# Use bash_cv_dev_fd=whacky to use /proc/self/fd instead of /dev/fd. +# After making this change process substitution such as in 'cat <(ls)' works. +TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" bash_cv_dev_fd=whacky" TERMUX_PKG_RM_AFTER_INSTALL="share/man/man1/bashbug.1 bin/bashbug"