]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 24 Jun 2004 07:07:39 +0000 (07:07 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 24 Jun 2004 07:07:39 +0000 (07:07 +0000)
zsh, disable GLOB_SUBST.

ChangeLog
THANKS
lib/m4sugar/m4sh.m4

index 2d817809b50a639198afd4a33188bd0a6f84a5e7..b5463b6968ee916e1973ab4ee05478b00c6fcdb6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-06-23  Noah Misch  <noah@cs.caltech.edu>
+
+        * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
+        zsh, disable GLOB_SUBST to avoid backslash handling problems.
+       (trivial change)
+
 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
 
        * doc/autoconf.texi (File System Conventions): Warn about
diff --git a/THANKS b/THANKS
index 35e5ce70d030afdbc5d1a57754d795be792f5f4e..554181d01e2bc7c35481bf75db18e41936582423 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -81,7 +81,7 @@ Henk Krus                   h.krus@cyclone.nl
 H.J. Lu                     hjl@gnu.org
 H. Merijn Brand             h.m.brand@hccnet.nl
 Ian Lance Taylor            ian@cygnus.com
-Ian Redfern                Ian.Redfern@logicacmg.com
+Ian Redfern                 Ian.Redfern@logicacmg.com
 Ilya Zakharevich            ilya@Math.Berkeley.EDU
 James A. Lupo               lupoja@feynman.ml.wpafb.af.mil
 Jason Molenda               jsm@cygnus.com
@@ -144,13 +144,14 @@ Nicolas Joly                njoly@pasteur.fr
 Nishio Futoshi              fut_nis@d3.dion.ne.jp
 Noah Elliott                elliott@hera.llnl.gov
 Noah Friedman               friedman@gnu.ai.mit.edu
+Noah Misch                  noah@cs.caltech.edu
 Oliver Kiddle               opk@zsh.org
 Olly Betts                  olly@survex.com
 Ossama Othman               ossama@debian.org
 Patrick Tullmann            tullmann@cs.utah.edu
 Patrick Welche              prlw1@newn.cam.ac.uk
 Paul Berrevoets             paul@swi.com
-Paul Eggert                 eggert@twinsun.com
+Paul Eggert                 eggert@cs.ucla.edu
 Paul Gampe                  paulg@apnic.net
 Paul Jarc                   prj@po.cwru.edu
 Paul Martinolich            martinol@datasync.com
index d8ad91efbc1273f587b0a0bf7ecd37034ec0f27a..79529bbfc4d8733b7ccc9f17fbfd76916e5bb9af 100644 (file)
@@ -161,6 +161,7 @@ if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
   [#] Zsh 3.x and 4.x performs word splitting on ${1+"$[@]"}, which
   # is contrary to our usage.  Disable this feature.
   alias -g '${1+"$[@]"}'='"$[@]"'
+  setopt NO_GLOB_SUBST
 elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
   set -o posix
 fi