Bugzilla bug 224161: fixed a regression that was introduced in the fix

for this bug.  There was a missing '$' and the incorrect use of () around
variable names.
This commit is contained in:
wchang0222%aol.com 2004-02-07 15:23:49 +00:00
Родитель d0b43224ff
Коммит 5e9e4dc144
2 изменённых файлов: 6 добавлений и 6 удалений

6
nsprpub/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
;;

Просмотреть файл

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