From 605df6ebb633a70b3f555bdd0bb0874d81e07597 Mon Sep 17 00:00:00 2001 From: Jeff Teunissen Date: Thu, 5 Jul 2001 21:15:08 +0000 Subject: [PATCH] Change the bashism $() back to `` --- tools/qfcc/configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/qfcc/configure.in b/tools/qfcc/configure.in index ff7ae3d24..ac7d20ad8 100644 --- a/tools/qfcc/configure.in +++ b/tools/qfcc/configure.in @@ -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"