diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-07-21 17:15:38 +0100 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-10-31 00:24:07 +0000 |
commit | 073b1fe85068620eb6c06432b1be13c40394a177 (patch) | |
tree | 33106c5106fca8ea9af70d9276501941994e8562 | |
parent | 8a310a5fa5a908cf8771e44431e5743fb0e8b026 (diff) | |
download | automake-073b1fe85068620eb6c06432b1be13c40394a177.tar.gz |
tests: avoid use of intervals to capitalize letters
It was causing spurious failures with with Solaris 8 'tr'.
See automake bug#14891.
* t/test-extensions.sh: Adjust.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
-rw-r--r-- | t/test-extensions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-extensions.sh b/t/test-extensions.sh index 070099171..ca7c5eccb 100644 --- a/t/test-extensions.sh +++ b/t/test-extensions.sh @@ -39,7 +39,7 @@ $AUTOMAKE -a grep -i 'log' Makefile.in # For debugging. for lc in $valid_extensions; do - uc=$(echo $lc | tr '[a-z]' '[A-Z]') + uc=$(echo $lc | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ) $FGREP "\$(${uc}_LOG_COMPILER)" Makefile.in grep "^${uc}_LOG_COMPILE =" Makefile.in grep "^\.${lc}\.log:" Makefile.in |