]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* autoconf.sh (_ac_warnings): Fix call to tr.
authorAkim Demaille <akim@epita.fr>
Wed, 12 Jul 2000 16:33:38 +0000 (16:33 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 12 Jul 2000 16:33:38 +0000 (16:33 +0000)
Reported by Johan Danielsson.

ChangeLog
THANKS
autoconf.in
autoconf.sh
bin/autoconf.in

index cc3266b50e96841256a446f12857dd1a95e75164..0e9acaa52483678ad984775a463f1a45094adea2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-07-12  Akim Demaille  <akim@epita.fr>
+
+       * autoconf.sh (_ac_warnings): Fix call to tr.
+       Reported by Johan Danielsson.
+
 2000-07-10  Martin Wilck <martin@tropos.de>
 
        * aclang.m4 (_AC_PROG_F77_V): New macro to determine the flag that
diff --git a/THANKS b/THANKS
index a52d506a61841797280c3feff0cc61520ad56e28..77fc6e9d51a21d32fec40c473fa6543ba9a7ed45 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -55,6 +55,7 @@ Jeffrey A Law         law@cygnus.com
 Jim Blandy             jimb@wookumz.gnu.ai.mit.edu
 Jim Meyering           meyering@ascend.com
 Jiro Takabatake                jiro@din.or.jp
+Johan Danielsson       joda@pdc.kth.se
 John David Anglin      dave@hiauly1.hia.nrc.ca
 John Fortin            fortinj@attglobal.net
 John Interrante                interran@uluru.stanford.edu
index 385a44fcfad81a64784185d232dcc952e54d7515..2f668e6371c947ac5120cc102a8e6a7aedc6dbce 100644 (file)
@@ -223,7 +223,7 @@ done
 # 2. $WARNINGS, $3 command line options, in that order.
 # Set them in the order expected by the M4 macros: the converse.
 _ac_warnings=
-for warning in `IFS=,; echo syntax,$WARNINGS,$warnings | tr [A-Z] [a-z]`
+for warning in `IFS=,; echo syntax,$WARNINGS,$warnings | tr 'A-Z' 'a-z'`
 do
   test -n $warning || continue
   _ac_warnings="$warning"`test -n "$_ac_warnings" && echo ",$_ac_warnings"`
index 385a44fcfad81a64784185d232dcc952e54d7515..2f668e6371c947ac5120cc102a8e6a7aedc6dbce 100644 (file)
@@ -223,7 +223,7 @@ done
 # 2. $WARNINGS, $3 command line options, in that order.
 # Set them in the order expected by the M4 macros: the converse.
 _ac_warnings=
-for warning in `IFS=,; echo syntax,$WARNINGS,$warnings | tr [A-Z] [a-z]`
+for warning in `IFS=,; echo syntax,$WARNINGS,$warnings | tr 'A-Z' 'a-z'`
 do
   test -n $warning || continue
   _ac_warnings="$warning"`test -n "$_ac_warnings" && echo ",$_ac_warnings"`
index 385a44fcfad81a64784185d232dcc952e54d7515..2f668e6371c947ac5120cc102a8e6a7aedc6dbce 100644 (file)
@@ -223,7 +223,7 @@ done
 # 2. $WARNINGS, $3 command line options, in that order.
 # Set them in the order expected by the M4 macros: the converse.
 _ac_warnings=
-for warning in `IFS=,; echo syntax,$WARNINGS,$warnings | tr [A-Z] [a-z]`
+for warning in `IFS=,; echo syntax,$WARNINGS,$warnings | tr 'A-Z' 'a-z'`
 do
   test -n $warning || continue
   _ac_warnings="$warning"`test -n "$_ac_warnings" && echo ",$_ac_warnings"`