зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
3422584848
Коммит
c063d529ae
|
@ -3245,9 +3245,9 @@ EOF
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# do the right thing for panther SDK support
|
# do the right thing for panther SDK support
|
||||||
if test "NEXT_ROOT"; then
|
if test "$NEXT_ROOT"; then
|
||||||
CFLAGS="-I$(NEXT_ROOT)/usr/include $CFLAGS"
|
CFLAGS="-I${NEXT_ROOT}/usr/include $CFLAGS"
|
||||||
CXXFLAGS="-I$(NEXT_ROOT)/usr/include $CXXFLAGS"
|
CXXFLAGS="-I${NEXT_ROOT}/usr/include $CXXFLAGS"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|
|
@ -895,9 +895,9 @@ case "$target" in
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# do the right thing for panther SDK support
|
# do the right thing for panther SDK support
|
||||||
if test "NEXT_ROOT"; then
|
if test "$NEXT_ROOT"; then
|
||||||
CFLAGS="-I$(NEXT_ROOT)/usr/include $CFLAGS"
|
CFLAGS="-I${NEXT_ROOT}/usr/include $CFLAGS"
|
||||||
CXXFLAGS="-I$(NEXT_ROOT)/usr/include $CXXFLAGS"
|
CXXFLAGS="-I${NEXT_ROOT}/usr/include $CXXFLAGS"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче