mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
Change the $(command) stuff back to command
. Bashism.
This commit is contained in:
parent
9e19da13de
commit
37ad61be4d
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ AC_SUBST(NQ_QSG_VERSION)
|
|||
AC_SUBST(QW_VERSION)
|
||||
AC_SUBST(QW_QSG_VERSION)
|
||||
|
||||
ISODATE=$(date +%Y-%m-%d)
|
||||
ISODATE=`date +%Y-%m-%d`
|
||||
AC_SUBST(ISODATE)
|
||||
|
||||
AC_LANG_C
|
||||
|
@ -71,7 +71,7 @@ if test "$1" = gcc; then
|
|||
shift
|
||||
args="$*"
|
||||
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 kgcc)
|
||||
CC="kgcc $args"
|
||||
set $CPP
|
||||
|
|
Loading…
Reference in a new issue