0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/newtree synced 2025-03-10 10:12:11 +00:00

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 set $CC
if test "$1" = gcc; then if test "$1" = gcc; then
shift
args="$*"
AC_MSG_CHECKING(for fubared gcc) AC_MSG_CHECKING(for fubared gcc)
if test `gcc --version` = 2.96; then if test `gcc --version` = 2.96; then
AC_MSG_RESULT(yes. you poor sod. Hope you have egcs) AC_MSG_RESULT(yes. you poor sod. Hope you have egcs)
CC=egcs CC="egcs $args"
set $CPP
shift
CPP="egcs $*"
else else
AC_MSG_RESULT(no. good) AC_MSG_RESULT(no. good)
fi fi