From: Akim Demaille Date: Wed, 12 Jul 2000 16:33:38 +0000 (+0000) Subject: * autoconf.sh (_ac_warnings): Fix call to tr. X-Git-Tag: autoconf-2.50~727 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=17680fe3fb906688bee8921acc76c2bd74278faa;p=thirdparty%2Fautoconf.git * autoconf.sh (_ac_warnings): Fix call to tr. Reported by Johan Danielsson. --- diff --git a/ChangeLog b/ChangeLog index cc3266b50..0e9acaa52 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-07-12 Akim Demaille + + * autoconf.sh (_ac_warnings): Fix call to tr. + Reported by Johan Danielsson. + 2000-07-10 Martin Wilck * aclang.m4 (_AC_PROG_F77_V): New macro to determine the flag that diff --git a/THANKS b/THANKS index a52d506a6..77fc6e9d5 100644 --- 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 diff --git a/autoconf.in b/autoconf.in index 385a44fcf..2f668e637 100644 --- a/autoconf.in +++ b/autoconf.in @@ -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"` diff --git a/autoconf.sh b/autoconf.sh index 385a44fcf..2f668e637 100644 --- a/autoconf.sh +++ b/autoconf.sh @@ -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"` diff --git a/bin/autoconf.in b/bin/autoconf.in index 385a44fcf..2f668e637 100644 --- a/bin/autoconf.in +++ b/bin/autoconf.in @@ -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"`