emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r102629: Don't depend on POSIX compat


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102629: Don't depend on POSIX compatible parsing of parameter expansion
Date: Fri, 10 Dec 2010 23:42:17 +0100
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102629
committer: Andreas Schwab <address@hidden>
branch nick: t
timestamp: Fri 2010-12-10 23:42:17 +0100
message:
  Don't depend on POSIX compatible parsing of parameter expansion
modified:
  configure
  configure.in
=== modified file 'configure'
--- a/configure 2010-12-10 17:29:54 +0000
+++ b/configure 2010-12-10 22:42:17 +0000
@@ -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}

=== modified file 'configure.in'
--- a/configure.in      2010-12-10 17:29:54 +0000
+++ b/configure.in      2010-12-10 22:42:17 +0000
@@ -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}


reply via email to

[Prev in Thread] Current Thread [Next in Thread]