diff options
author | Eric Blake <eblake@redhat.com> | 2010-10-05 09:42:06 -0600 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2010-10-05 09:42:20 -0600 |
commit | 0259f6f9a9fb7f9366218711081d5638cc5f0504 (patch) | |
tree | b922477470caec05c9f1aee7f8c75c6d9c81442a /build-aux | |
parent | ae0a6b2df106b7ed760cc393312997adf995cc3b (diff) | |
download | gnulib-0259f6f9a9fb7f9366218711081d5638cc5f0504.tar.gz |
bootstrap: fix Solaris regression
* build-aux/bootstrap (check_versions): Solaris tr still needs []
around ranges.
Reported by Pádraig Brady.
Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/bootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/bootstrap b/build-aux/bootstrap index 29802a1315..49b1e55125 100755 --- a/build-aux/bootstrap +++ b/build-aux/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh # Print a version string. -scriptversion=2010-10-05.14; # UTC +scriptversion=2010-10-05.15; # UTC # Bootstrap this package from checked-out sources. @@ -351,7 +351,7 @@ check_versions() { app=libtoolize fi # Honor $APP variables ($TAR, $AUTOCONF, etc.) - appvar=`echo $app | tr 'a-z-' 'A-Z_'` + appvar=`echo $app | tr '[a-z]-' '[A-Z]_'` test "$appvar" = TAR && appvar=AMTAR eval "app=\${$appvar-$app}" inst_ver=$(get_version $app) |