]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* config/ltmain.in: Change $XSED to $Xsed to fix hang noticed
authorBob Friesenhahn <bfriesen@simple.dallas.tx.us>
Sun, 3 Oct 2004 23:12:35 +0000 (23:12 +0000)
committerGary V. Vaughan <gary@gnu.org>
Sun, 3 Oct 2004 23:12:35 +0000 (23:12 +0000)
under MinGW.
* tests/defs.in: Support VERBOSE=debug to enable shell tracing
while running tests.

ChangeLog
config/ltmain.in
tests/defs.in

index a4ea5c3e758971fa27d745bf7f7e3dcdeb5309cc..7c3a362fc0f18e354cfeac3b292a2aedac2665b8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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.
index e6f2d8ea402a5b0f7300f93457b70d3d9c3e52b5..334ad498a76942b4b512f65c23391e6e7ef53f61 100644 (file)
@@ -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
index ed86c42649cac3b78a8223de5dc5822985000176..b68974a8a0cac9914fcf3803f4fdd80ebb343ac8 100644 (file)
@@ -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