about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-10-30 09:59:46 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-10-30 09:59:46 +0000
commit5c0b3ddc4251965559cb606f3441c240e0ea7936 (patch)
tree56c4b3b9f6114edd3b239d33c63fcb2479cdd045
parentdb68b7270f108e553c03f5b577e59a42064c5087 (diff)
downloadzsh-5c0b3ddc4251965559cb606f3441c240e0ea7936.tar.gz
zsh-5c0b3ddc4251965559cb606f3441c240e0ea7936.tar.xz
zsh-5c0b3ddc4251965559cb606f3441c240e0ea7936.zip
25950: need configure x$dynamic trick in two more places
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a107e86d..582b65c76 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2008-10-30  Peter Stephenson  <pws@csr.com>
 
+	* 25950: configure.ac: need "x$dynamic" trick in two
+	more places.
+
 	* users/13418: Src/Modules/termcap.c: protect against
 	HAVE_STRCODES lying.
 
diff --git a/configure.ac b/configure.ac
index 2ea2257aa..25ec0f93c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2919,13 +2919,13 @@ source code location      : ${srcdir}
 compiler                  : ${CC}
 preprocessor flags        : ${CPPFLAGS}
 executable compiler flags : ${CFLAGS}"
-if test "$dynamic" = yes; then
+if test "x$dynamic" = yes; then
   echo "\
 module compiler flags     : ${CFLAGS} ${DLCFLAGS}"
 fi
 echo "\
 executable linker flags   : ${LDFLAGS} ${EXELDFLAGS} ${EXTRA_LDFLAGS}"
-if test "$dynamic" = yes; then
+if test "x$dynamic" = yes; then
   echo "\
 module linker flags       : ${LDFLAGS} ${LIBLDFLAGS} ${DLLDFLAGS}"
 fi