handle backslash quoting poorly, before doing anything else.
* tests/defs: Likewise.
+2004-06-24 Noah Misch <noah@cs.caltech.edu>
+
+ * ltmain.in: Unset the zsh GLOB_SUBST option, which makes zsh
+ handle backslash quoting poorly, before doing anything else.
+ * tests/defs: Likewise.
+
2004-06-16 Brad <brad@comstyle.com>
* libtool.m4: More improvements to OpenBSD support.
VERSION=@VERSION@
TIMESTAMP="@TIMESTAMP@"
+# See if we are running on zsh, and set the options which allow our
+# commands through without removal of \ escapes.
+if test -n "${ZSH_VERSION+set}" ; then
+ setopt NO_GLOB_SUBST
+fi
# Check that we have a working $echo.
if test "X$1" = X--no-reexec; then
# Defines for Libtool testing environment.
# Gord Matzigkeit <gord@gnu.ai.mit.edu>, 1996
+# See if we are running on zsh, and set the options which allow our
+# commands through without removal of \ escapes.
+if test -n "${ZSH_VERSION+set}" ; then
+ setopt NO_GLOB_SUBST
+fi
+
# Check that srcdir is set to an absolute path.
case "$srcdir" in
/* | [A-Za-z]:\\*) ;;