`IFS=,; echo ,' will give a comma. Take this into account.
+2000-08-01 Akim Demaille <akim@epita.fr>
+
+ * autoheader.sh (_ac_warnings): Be robust to LC_COLLATE.
+ `IFS=,; echo ,' will give a comma. Take this into account.
+
2000-08-01 Akim Demaille <akim@epita.fr>
* aclang.m4 (AC_PROG_CC): Also try to find $target_alias-cc.
# The warnings are the concatenation of 1. application's defaults
# (here, none), 2. $WARNINGS, $3 command line options, in that order.
+alphabet='abcdefghijklmnopqrstuvwxyz'
+ALPHABET='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
_ac_warnings=
-for warning in `IFS=,; echo $WARNINGS,$warnings | tr 'A-Z' 'a-z'`
+for warning in `IFS=,; echo $WARNINGS,$warnings | tr $ALPHABET $alphabet`
do
case $warning in
- '') continue;;
+ '' | ,) continue;;
no-*) eval warning_`expr x$warning : 'xno-\(.*\)'`=false;;
*) eval warning_$warning=:;;
esac
# The warnings are the concatenation of 1. application's defaults
# (here, none), 2. $WARNINGS, $3 command line options, in that order.
+alphabet='abcdefghijklmnopqrstuvwxyz'
+ALPHABET='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
_ac_warnings=
-for warning in `IFS=,; echo $WARNINGS,$warnings | tr 'A-Z' 'a-z'`
+for warning in `IFS=,; echo $WARNINGS,$warnings | tr $ALPHABET $alphabet`
do
case $warning in
- '') continue;;
+ '' | ,) continue;;
no-*) eval warning_`expr x$warning : 'xno-\(.*\)'`=false;;
*) eval warning_$warning=:;;
esac
# The warnings are the concatenation of 1. application's defaults
# (here, none), 2. $WARNINGS, $3 command line options, in that order.
+alphabet='abcdefghijklmnopqrstuvwxyz'
+ALPHABET='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
_ac_warnings=
-for warning in `IFS=,; echo $WARNINGS,$warnings | tr 'A-Z' 'a-z'`
+for warning in `IFS=,; echo $WARNINGS,$warnings | tr $ALPHABET $alphabet`
do
case $warning in
- '') continue;;
+ '' | ,) continue;;
no-*) eval warning_`expr x$warning : 'xno-\(.*\)'`=false;;
*) eval warning_$warning=:;;
esac
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.022.
-.TH AUTOHEADER "1" "July 2000" "GNU autoconf 2.14a" FSF
+.TH AUTOHEADER "1" "August 2000" "GNU autoconf 2.14a" FSF
.SH NAME
autoheader \- Create a template header for configure
.SH SYNOPSIS