Make it not break on systems where 'make' is not gnu make.

This commit is contained in:
ramiro%netscape.com 1999-04-16 02:55:02 +00:00
Родитель f5deb2638e
Коммит e140572a4d
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -1840,9 +1840,13 @@ dnl in NSPR to be 'make -j1' - or just 'make'
dnl
dnl Only set this if 'make' is found.
_make_try=`make -v 2> /dev/null`
_make_command='make'
_make_version=`$_make_command -v 2> /dev/null`
_make_is_gnu=`echo $_make_version | head -1 | awk '{ print $1; }'`
if test "$_make_try"
echo "_make_is_gnu=$_make_is_gnu"
if test "$_make_is_gnu" = "GNU"
then
MOZ_NSPRENV_OVERRIDE_MAKE=make
fi