From: Gary V. Vaughan Date: Thu, 25 Oct 2012 12:31:20 +0000 (+0000) Subject: bootstrap: bash versions 3.00.x do not have += functionality. X-Git-Tag: v2.4.2.418~84 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=90152bb184f1ff60ebb510189371a1a06f1c2b4f;p=thirdparty%2Flibtool.git bootstrap: bash versions 3.00.x do not have += functionality. * gl/build-aux/funclib.sh: Fix a typo in fork minimisation for bash versions 3.00.x. * bootstrap: Regenerate. Signed-off-by: Gary V. Vaughan --- diff --git a/bootstrap b/bootstrap index f6dd4e537..76fcc066b 100755 --- a/bootstrap +++ b/bootstrap @@ -374,7 +374,7 @@ func_require_term_colors () : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in - [12].* | 3.0 | 3.0.*) ;; + [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; diff --git a/gl/build-aux/funclib.sh b/gl/build-aux/funclib.sh index 90f40a559..a470f8d9c 100644 --- a/gl/build-aux/funclib.sh +++ b/gl/build-aux/funclib.sh @@ -364,7 +364,7 @@ func_require_term_colors () : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in - [12].* | 3.0 | 3.0.*) ;; + [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;;