mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
Change the bashism $() back to ``
This commit is contained in:
parent
245d81420d
commit
605df6ebb6
1 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@ AM_INIT_AUTOMAKE(qfcc, 0.1.0)
|
|||
|
||||
AC_SUBST(VERSION)
|
||||
|
||||
ISODATE=$(date +%Y-%m-%d)
|
||||
ISODATE=`date +%Y-%m-%d`
|
||||
AC_SUBST(ISODATE)
|
||||
|
||||
AC_LANG_C
|
||||
|
@ -28,7 +28,7 @@ if test "$1" = gcc; then
|
|||
shift
|
||||
args="$*"
|
||||
AC_MSG_CHECKING(for broken 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)
|
||||
CC="egcs $args"
|
||||
set $CPP
|
||||
|
@ -60,7 +60,7 @@ AC_ARG_ENABLE(profile,
|
|||
if test "x$profile" = xyes; then
|
||||
BUILD_TYPE="$BUILD_TYPE Profile"
|
||||
if test "x$GCC" = xyes; then
|
||||
CFLAGS="$(echo $CFLAGS | sed -e 's/-fomit-frame-pointer//g') -pg"
|
||||
CFLAGS="`echo $CFLAGS | sed -e 's/-fomit-frame-pointer//g'` -pg"
|
||||
LDFLAGS="$LDFLAGS -pg"
|
||||
else
|
||||
CFLAGS="$CFLAGS -p"
|
||||
|
|
Loading…
Reference in a new issue