mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-21 01:01:48 +08:00
(AC_SET_MAKE): Use $MAKE if defined, else "make".
This commit is contained in:
parent
301c62396e
commit
6df95ed43b
@ -107,10 +107,10 @@ all:
|
||||
EOF
|
||||
changequote(,)dnl
|
||||
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
|
||||
eval `make -f conftestmake 2>/dev/null | grep temp=`
|
||||
eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
|
||||
changequote([,])dnl
|
||||
if test -n "$ac_maketemp"; then SET_MAKE=
|
||||
else SET_MAKE='MAKE=make'; fi
|
||||
else SET_MAKE="MAKE=${MAKE-make}"; fi
|
||||
AC_SUBST([SET_MAKE])dnl
|
||||
])dnl
|
||||
dnl
|
||||
|
@ -107,10 +107,10 @@ all:
|
||||
EOF
|
||||
changequote(,)dnl
|
||||
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
|
||||
eval `make -f conftestmake 2>/dev/null | grep temp=`
|
||||
eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
|
||||
changequote([,])dnl
|
||||
if test -n "$ac_maketemp"; then SET_MAKE=
|
||||
else SET_MAKE='MAKE=make'; fi
|
||||
else SET_MAKE="MAKE=${MAKE-make}"; fi
|
||||
AC_SUBST([SET_MAKE])dnl
|
||||
])dnl
|
||||
dnl
|
||||
|
Loading…
Reference in New Issue
Block a user