* configure.in: Ignore non-absolute value in $AS.

From-SVN: r23451
This commit is contained in:
Andreas Schwab 1998-10-30 01:45:46 +00:00 committed by Andreas Schwab
parent f5343a9dd0
commit d65ae0584b
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Fri Oct 30 10:43:29 1998 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* configure.in: Ignore non-absolute value in $AS.
Fri Oct 30 00:54:25 1998 Peter Jakubek <pjak@snafu.de>
* m68k.h (INDIRECTABLE_1_ADDRESS_P): Fix thinko.

View File

@ -112,14 +112,17 @@ gas_flag=no)
AC_ARG_WITH(as,
[ --with-as arrange to use the specified as (full pathname).],
AS="$with_as")
if test x"${AS+set}" = x"set"; then
# Ignore any non-absolute value which comes from ${GCC_FLAGS_TO_PASS}.
case $AS in
/*)
if test ! -x "$AS"; then
AC_MSG_WARN([cannot execute: $AS: check --with-as or env. var. AS])
elif test "GNU" = `$AS -v </dev/null 2>&1 | sed '1s/^GNU.*/GNU/;q'`; then
gas_flag=yes
fi
AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$AS")
fi
;;
esac
# With stabs
AC_ARG_WITH(stabs,