summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorGary V. Vaughan <gary@gnu.org>2012-10-25 12:31:20 +0000
committerGary V. Vaughan <gary@gnu.org>2012-10-25 12:33:55 +0000
commit90152bb184f1ff60ebb510189371a1a06f1c2b4f (patch)
treed78ffeafdb1878c6341f480bce6f66e572dbed0e /bootstrap
parentb7679c7c564582cfb8bf8a88436d1cd58d6c384b (diff)
downloadlibtool-90152bb184f1ff60ebb510189371a1a06f1c2b4f.tar.gz
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 <gary@gnu.org>
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index f6dd4e53..76fcc066 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"}
;;