2001-01-12 Ben Elliston <bje@redhat.com>

* config.guess: Delete $dummy.rel after compiling test programs on
	PDP-10 systems whose compilers produce this output file. From Lars
	Brinkhoff <lars@nocrew.org>.
This commit is contained in:
Ben Elliston 2001-01-12 09:07:51 +00:00
parent 2867c9830b
commit c83c74932c
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
2001-01-12 Ben Elliston <bje@redhat.com>
* config.guess: Delete $dummy.rel after compiling test programs on
PDP-10 systems whose compilers produce this output file. From Lars
Brinkhoff <lars@nocrew.org>.
* config.sub: Handle EMX on OS/2. From Pavel Roskin.
2001-01-12 Ben Elliston <bje@redhat.com>

4
config.guess vendored
View File

@ -93,7 +93,7 @@ fi
dummy=dummy-$$
trap 'rm -f $dummy.c $dummy.o $dummy; exit 1' 1 2 15
trap 'rm -f $dummy.c $dummy.o $dummy.rel $dummy; exit 1' 1 2 15
# CC_FOR_BUILD -- compiler used by this script.
# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
@ -107,7 +107,7 @@ case $CC_FOR_BUILD,$HOST_CC,$CC in
CC_FOR_BUILD="$c"; break
fi
done
rm -f $dummy.c $dummy.o
rm -f $dummy.c $dummy.o $dummy.rel
if test x"$CC_FOR_BUILD" = x ; then
CC_FOR_BUILD=no_compiler_found
fi