* aclang.m4 (_AC_COMPILER_OBJEXT, _AC_COMPILER_EXEEXT_O):

Make the order of arguments for ls count by splitting the ls
command into a sequence of ls commands.
This commit is contained in:
Akim Demaille 2000-12-20 18:41:10 +00:00
parent edad08c3b2
commit 9282441bdb
5 changed files with 14 additions and 12 deletions

View File

@ -1,3 +1,9 @@
2000-12-20 Lars J. Aas <larsa@sim.no>
* aclang.m4 (_AC_COMPILER_OBJEXT, _AC_COMPILER_EXEEXT_O):
Make the order of arguments for ls count by splitting the ls
command into a sequence of ls commands.
2000-12-20 Akim Demaille <akim@epita.fr>
* aclang.m4 (_AC_LANG_COMPILER_GNU): Use a tabulation to indent

View File

@ -691,8 +691,7 @@ _AC_LINK_IFELSE([],
# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
# work properly (i.e., refer to `conftest.exe'), while it won't with
# `rm'.
for ac_file in `ls conftest$ac_exeext conftest.exe conftest conftest.* \
2>/dev/null`; do
for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
case $ac_file in
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
*) ac_cv_exeext=`expr "$ac_file" : ['[^.]*\(\..*\)']`
@ -738,7 +737,7 @@ m4_define([_AC_COMPILER_OBJEXT],
[AC_LANG_CONFTEST([AC_LANG_PROGRAM()])
rm -f conftest.o conftest.obj
AS_IFELSE([AC_TRY_EVAL(ac_compile)],
[for ac_file in `ls conftest.o conftest.obj conftest.* 2>/dev/null`; do
[for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
case $ac_file in
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;;
*) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`

View File

@ -691,8 +691,7 @@ _AC_LINK_IFELSE([],
# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
# work properly (i.e., refer to `conftest.exe'), while it won't with
# `rm'.
for ac_file in `ls conftest$ac_exeext conftest.exe conftest conftest.* \
2>/dev/null`; do
for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
case $ac_file in
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
*) ac_cv_exeext=`expr "$ac_file" : ['[^.]*\(\..*\)']`
@ -738,7 +737,7 @@ m4_define([_AC_COMPILER_OBJEXT],
[AC_LANG_CONFTEST([AC_LANG_PROGRAM()])
rm -f conftest.o conftest.obj
AS_IFELSE([AC_TRY_EVAL(ac_compile)],
[for ac_file in `ls conftest.o conftest.obj conftest.* 2>/dev/null`; do
[for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
case $ac_file in
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;;
*) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`

View File

@ -691,8 +691,7 @@ _AC_LINK_IFELSE([],
# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
# work properly (i.e., refer to `conftest.exe'), while it won't with
# `rm'.
for ac_file in `ls conftest$ac_exeext conftest.exe conftest conftest.* \
2>/dev/null`; do
for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
case $ac_file in
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
*) ac_cv_exeext=`expr "$ac_file" : ['[^.]*\(\..*\)']`
@ -738,7 +737,7 @@ m4_define([_AC_COMPILER_OBJEXT],
[AC_LANG_CONFTEST([AC_LANG_PROGRAM()])
rm -f conftest.o conftest.obj
AS_IFELSE([AC_TRY_EVAL(ac_compile)],
[for ac_file in `ls conftest.o conftest.obj conftest.* 2>/dev/null`; do
[for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
case $ac_file in
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;;
*) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`

View File

@ -691,8 +691,7 @@ _AC_LINK_IFELSE([],
# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
# work properly (i.e., refer to `conftest.exe'), while it won't with
# `rm'.
for ac_file in `ls conftest$ac_exeext conftest.exe conftest conftest.* \
2>/dev/null`; do
for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
case $ac_file in
*.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
*) ac_cv_exeext=`expr "$ac_file" : ['[^.]*\(\..*\)']`
@ -738,7 +737,7 @@ m4_define([_AC_COMPILER_OBJEXT],
[AC_LANG_CONFTEST([AC_LANG_PROGRAM()])
rm -f conftest.o conftest.obj
AS_IFELSE([AC_TRY_EVAL(ac_compile)],
[for ac_file in `ls conftest.o conftest.obj conftest.* 2>/dev/null`; do
[for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
case $ac_file in
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;;
*) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`