forgot about cpp and args

This commit is contained in:
Bill Currie 2001-01-13 05:35:04 +00:00
parent 3ea038af68
commit d57764745e

View file

@ -39,10 +39,15 @@ AC_PROG_LN_S
set $CC
if test "$1" = gcc; then
shift
args="$*"
AC_MSG_CHECKING(for fubared gcc)
if test `gcc --version` = 2.96; then
AC_MSG_RESULT(yes. you poor sod. Hope you have egcs)
CC=egcs
CC="egcs $args"
set $CPP
shift
CPP="egcs $*"
else
AC_MSG_RESULT(no. good)
fi