under MinGW.
* tests/defs.in: Support VERBOSE=debug to enable shell tracing
while running tests.
+2004-10-03 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
+
+ * config/ltmain.in: Change $XSED to $Xsed to fix hang noticed
+ under MinGW.
+ * tests/defs.in: Support VERBOSE=debug to enable shell tracing
+ while running tests.
+
2004-10-03 Gary V. Vaughan <gary@gnu.org>
* NEWS: Updated.
# Do a test to see if this is really a libtool program.
case $host in
*cygwin*|*mingw*)
- wrapper=`$ECHO "X$file" | $XSED -e 's,.exe$,,'`
+ wrapper=`$ECHO "X$file" | $Xsed -e 's,.exe$,,'`
;;
*)
wrapper=$file
CONFIG_SITE=/nonexistent
fi
-# See how redirections should work.
+# How verbose should we be? Default is no test output.
+# Setting VERBOSE=yes enables test output.
+# Setting VERBOSE=debug also puts the shell in debug mode.
test "${VERBOSE+set}" != "set" && VERBOSE=no
case "$VERBOSE" in
NO | no | 0 | "")
exec > /dev/null 2>&1
;;
+DEBUG | debug )
+ set -x
+ ;;
esac
if test -z "$srcdir"; then