From: Peter O'Gorman Date: Fri, 2 Jan 2004 23:10:52 +0000 (+0000) Subject: * m4/libtool.m4: Ensure that ${ZSH_VERSION+set} is properly escaped. X-Git-Tag: release-1-9b~216 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a85084863fa580085a47f42c1870ebc68e712971;p=thirdparty%2Flibtool.git * m4/libtool.m4: Ensure that ${ZSH_VERSION+set} is properly escaped. --- diff --git a/ChangeLog b/ChangeLog index aff8081d0..cecf1b02b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2004-01-02 Peter O'Gorman + * m4/libtool.m4: Ensure that ${ZSH_VERSION+set} is properly escaped. + * m4/libtool.m4 (CDPATH): Change the CDPATH setting so that it allows for zsh differences, as noted in the autoconf manual's Portable Shell - Special Shell Variables section. diff --git a/m4/libtool.m4 b/m4/libtool.m4 index a963e8cfe..241bc4e83 100644 --- a/m4/libtool.m4 +++ b/m4/libtool.m4 @@ -104,7 +104,7 @@ dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. -if test -n "${ZSH_VERSION+set}" ; then +if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi ])