mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-18 14:16:00 +08:00
* tests/defs (func_configure): cdemo, demo and mdemo are shows
signs of indeterminacy for some users. Be more verbose during failure to help track down the cause.
This commit is contained in:
parent
33a0b234b0
commit
c2b6ce4412
@ -1,3 +1,9 @@
|
||||
2003-11-24 Gary V. Vaughan <gary@gnu.org>
|
||||
|
||||
* tests/defs (func_configure): cdemo, demo and mdemo are shows
|
||||
signs of indeterminacy for some users. Be more verbose during
|
||||
failure to help track down the cause.
|
||||
|
||||
2003-11-22 Peter O'Gorman <peter@pogma.com>
|
||||
|
||||
* ltmain.in: Check for module_cmds if max_cmd_len is exceeded too.
|
||||
|
15
tests/defs
15
tests/defs
@ -191,11 +191,20 @@ func_configure ()
|
||||
my_testdir="$srcdir/$my_dir"
|
||||
|
||||
test -n "$my_args" && my_args=" $my_args"
|
||||
func_msg "Configuring in $my_dir (--prefix=$prefix$my_args)"
|
||||
|
||||
my_args="--srcdir="\""$my_testdir"\"" --prefix="\""$prefix"\""$my_args"
|
||||
|
||||
eval $SHELL "$my_testdir/configure" $my_args || exit $EXIT_FAILURE
|
||||
func_msg "Configuring in $my_dir"
|
||||
|
||||
test -f "$my_testdir/configure" || autoreconf --force --install $my_testdir
|
||||
test -f "$my_testdir/configure" || exit $EXIT_FAILURE
|
||||
|
||||
eval func_msg $SHELL "$my_testdir/configure" $my_args
|
||||
eval $SHELL "$my_testdir/configure" $my_args || \
|
||||
{ func_msg "FAILED: Configuring in $my_testdir"
|
||||
ls -ltr $my_testdir
|
||||
eval $SHELL -vx "$my_testdir/configure" $my_args;
|
||||
exit $EXIT_FAILURE;
|
||||
}
|
||||
}
|
||||
|
||||
# func_check_static_shared staticp sharedp
|
||||
|
Loading…
Reference in New Issue
Block a user