* 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.
This commit is contained in:
Bob Friesenhahn 2004-10-03 20:47:05 +00:00
parent 954cd09b64
commit 623d66623e
3 changed files with 14 additions and 2 deletions

View File

@ -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>
* libltdl/lt__alloc.h (lt__alloc_die): Declare with LT_SCOPE as

View 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

View 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