From 90152bb184f1ff60ebb510189371a1a06f1c2b4f Mon Sep 17 00:00:00 2001 From: "Gary V. Vaughan" Date: Thu, 25 Oct 2012 12:31:20 +0000 Subject: [PATCH] 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 --- bootstrap | 2 +- gl/build-aux/funclib.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"} ;; -- 2.47.3