changeset 111871:d21197a7fc63

Don't depend on POSIX compatible parsing of parameter expansion
author Andreas Schwab <schwab@linux-m68k.org>
date Fri, 10 Dec 2010 23:42:17 +0100
parents b47e85affa59
children a264bb877bc7
files configure configure.in
diffstat 2 files changed, 12 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Fri Dec 10 15:00:25 2010 -0500
+++ b/configure	Fri Dec 10 23:42:17 2010 +0100
@@ -14910,12 +14910,17 @@
   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}
--- a/configure.in	Fri Dec 10 15:00:25 2010 -0500
+++ b/configure.in	Fri Dec 10 23:42:17 2010 +0100
@@ -3638,12 +3638,17 @@
   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}