* tests/sh.test: Test the config/ltmain.sh and libtoolize in the

build directory not the source directory, where they won't exist
during 'make distcheck'.
* ltmain.in: Revert one line of previous intendation clean-up
to enable one of the sh.test checks to pass.
This commit is contained in:
Scott James Remnant 2004-02-13 01:57:52 +00:00
parent 6039b9636b
commit d9e97e3854
3 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,11 @@
2004-02-13 Scott James Remnant <scott@netsplit.com>
* tests/sh.test: Test the config/ltmain.sh and libtoolize in the
build directory not the source directory, where they won't exist
during 'make distcheck'.
* ltmain.in: Revert one line of previous intendation clean-up
to enable one of the sh.test checks to pass.
* tests/cdemo/configure.ac: Drop AC_PREREQ back to 2.54, this
was debris from Gary's cvsapply going mad and wasn't backed
out.

View File

@ -3545,8 +3545,8 @@ EOF
;;
none | unknown | *)
newdeplibs=""
tmp_deplibs=`$echo "X $deplibs" |
$Xsed -e 's/ -lc$//' -e 's/ -[LR][^ ]*//g'`
tmp_deplibs=`$echo "X $deplibs" | $Xsed \
-e 's/ -lc$//' -e 's/ -[LR][^ ]*//g'`
if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then
for i in $predeps $postdeps ; do
# can't use Xsed below, because $i might contain '/'

View File

@ -29,7 +29,7 @@ fi
# Check all the "portable" shell scripts.
status=$EXIT_SUCCESS
scripts="$srcdir/../config/ltmain.sh $srcdir/../libtoolize"
scripts="../config/ltmain.sh ../libtoolize"
# Check for bad binary operators.
if $EGREP -n -e 'if[ ]+["'\'']?\\$[^ ]+[ ]+(=|-[lg][te]|-eq|-ne)' $scripts; then