mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-02 04:32:24 +00:00
forgot about cpp and args
This commit is contained in:
parent
3ea038af68
commit
d57764745e
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue