Change the bashism $() back to ``

This commit is contained in:
Jeff Teunissen 2001-07-05 21:15:08 +00:00
parent 245d81420d
commit 605df6ebb6

View file

@ -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"