Don't depend on POSIX compatible parsing of parameter expansion
This commit is contained in:
parent
175069efeb
commit
2b7f50d877
2 changed files with 12 additions and 2 deletions
7
configure
vendored
7
configure
vendored
|
@ -14910,12 +14910,17 @@ if test "${HAVE_GTK}" = "yes"; then
|
|||
USE_X_TOOLKIT=GTK
|
||||
fi
|
||||
|
||||
and_machfile=
|
||||
if test -n "$machfile"; then
|
||||
and_machfile=" and \`${machfile}'"
|
||||
fi
|
||||
|
||||
echo "
|
||||
Configured for \`${canonical}'.
|
||||
|
||||
Where should the build process find the source code? ${srcdir}
|
||||
What operating system and machine description files should Emacs use?
|
||||
\`${opsysfile}'${machfile:+ and \`${machfile}'}
|
||||
\`${opsysfile}'${and_machfile}
|
||||
What compiler should emacs be built with? ${CC} ${CFLAGS}
|
||||
Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason}
|
||||
Should Emacs use a relocating allocator for buffers? ${REL_ALLOC}
|
||||
|
|
|
@ -3638,12 +3638,17 @@ if test "${HAVE_GTK}" = "yes"; then
|
|||
USE_X_TOOLKIT=GTK
|
||||
fi
|
||||
|
||||
and_machfile=
|
||||
if test -n "$machfile"; then
|
||||
and_machfile=" and \`${machfile}'"
|
||||
fi
|
||||
|
||||
echo "
|
||||
Configured for \`${canonical}'.
|
||||
|
||||
Where should the build process find the source code? ${srcdir}
|
||||
What operating system and machine description files should Emacs use?
|
||||
\`${opsysfile}'${machfile:+ and \`${machfile}'}
|
||||
\`${opsysfile}'${and_machfile}
|
||||
What compiler should emacs be built with? ${CC} ${CFLAGS}
|
||||
Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason}
|
||||
Should Emacs use a relocating allocator for buffers? ${REL_ALLOC}
|
||||
|
|
Loading…
Add table
Reference in a new issue