summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwchang0222%aol.com <devnull@localhost>2004-02-07 06:30:28 +0000
committerwchang0222%aol.com <devnull@localhost>2004-02-07 06:30:28 +0000
commite12b5c4ae53606e6b5626b2e0efbf5ee136b8603 (patch)
tree712e9e0d22bf0acce7d6ea93ab046f3fe08f4e23
parent310dba82423915f71dc85da9873d4c14d7d9d871 (diff)
downloadnspr-hg-e12b5c4ae53606e6b5626b2e0efbf5ee136b8603.tar.gz
Bugzilla bug 224161: fixed a regression that was introduced in the fixMOZILLA_1_7a_RELEASE
for this bug. There was a missing '$' and the incorrect use of () around variable names.
-rwxr-xr-xconfigure6
-rw-r--r--configure.in6
2 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index 0441cf3f..06239676 100755
--- a/configure
+++ b/configure
@@ -3245,9 +3245,9 @@ EOF
fi
# do the right thing for panther SDK support
- if test "NEXT_ROOT"; then
- CFLAGS="-I$(NEXT_ROOT)/usr/include $CFLAGS"
- CXXFLAGS="-I$(NEXT_ROOT)/usr/include $CXXFLAGS"
+ if test "$NEXT_ROOT"; then
+ CFLAGS="-I${NEXT_ROOT}/usr/include $CFLAGS"
+ CXXFLAGS="-I${NEXT_ROOT}/usr/include $CXXFLAGS"
fi
;;
diff --git a/configure.in b/configure.in
index 02353b10..85e9e0d4 100644
--- a/configure.in
+++ b/configure.in
@@ -895,9 +895,9 @@ case "$target" in
fi
# do the right thing for panther SDK support
- if test "NEXT_ROOT"; then
- CFLAGS="-I$(NEXT_ROOT)/usr/include $CFLAGS"
- CXXFLAGS="-I$(NEXT_ROOT)/usr/include $CXXFLAGS"
+ if test "$NEXT_ROOT"; then
+ CFLAGS="-I${NEXT_ROOT}/usr/include $CFLAGS"
+ CXXFLAGS="-I${NEXT_ROOT}/usr/include $CXXFLAGS"
fi
;;