mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-18 10:45:15 +08:00
If M4 is an absolute file name that
no longer exists, use M4=m4.
This commit is contained in:
parent
1819b75811
commit
f06815b7d5
@ -31,6 +31,11 @@ if test "${LANG+set}" = 'set' ; then LANG=C; export LANG; fi
|
||||
|
||||
test -z "${AC_MACRODIR}" && AC_MACRODIR=@datadir@
|
||||
test -z "${M4}" && M4=@M4@
|
||||
case "${M4}" in
|
||||
/*) # Handle the case that m4 has moved since we were configured.
|
||||
# It may have been found originally in a build directory.
|
||||
test -f "${M4}" || M4=m4 ;;
|
||||
esac
|
||||
|
||||
tmpout=/tmp/acout.$$
|
||||
|
||||
|
@ -31,6 +31,11 @@ if test "${LANG+set}" = 'set' ; then LANG=C; export LANG; fi
|
||||
|
||||
test -z "${AC_MACRODIR}" && AC_MACRODIR=@datadir@
|
||||
test -z "${M4}" && M4=@M4@
|
||||
case "${M4}" in
|
||||
/*) # Handle the case that m4 has moved since we were configured.
|
||||
# It may have been found originally in a build directory.
|
||||
test -f "${M4}" || M4=m4 ;;
|
||||
esac
|
||||
|
||||
tmpout=/tmp/acout.$$
|
||||
|
||||
|
@ -31,6 +31,11 @@ if test "${LANG+set}" = 'set' ; then LANG=C; export LANG; fi
|
||||
|
||||
test -z "${AC_MACRODIR}" && AC_MACRODIR=@datadir@
|
||||
test -z "${M4}" && M4=@M4@
|
||||
case "${M4}" in
|
||||
/*) # Handle the case that m4 has moved since we were configured.
|
||||
# It may have been found originally in a build directory.
|
||||
test -f "${M4}" || M4=m4 ;;
|
||||
esac
|
||||
|
||||
tmpout=/tmp/acout.$$
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user