From 684dc01aacbb14547b5f041f5d43057001c72d13 Mon Sep 17 00:00:00 2001 From: Bob Friesenhahn Date: Sun, 3 Oct 2004 23:12:35 +0000 Subject: [PATCH] * 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. --- ChangeLog | 7 +++++++ config/ltmain.in | 2 +- tests/defs.in | 7 ++++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a4ea5c3e7..7c3a362fc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-10-03 Bob Friesenhahn + + * 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 * NEWS: Updated. diff --git a/config/ltmain.in b/config/ltmain.in index e6f2d8ea4..334ad498a 100644 --- a/config/ltmain.in +++ b/config/ltmain.in @@ -1926,7 +1926,7 @@ func_mode_install () # 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 diff --git a/tests/defs.in b/tests/defs.in index ed86c4264..b68974a8a 100644 --- a/tests/defs.in +++ b/tests/defs.in @@ -43,12 +43,17 @@ if test -z "$DJGPP"; then 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 -- 2.47.2