From: Charles Wilson Date: Fri, 31 May 2002 06:56:10 +0000 (+0000) Subject: * tests/build-relink2.test: look for installed libl3.la X-Git-Tag: release-1-5~110 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8ffe65a48c0cf7c1c0a108efd18ca6abd9e2e78;p=thirdparty%2Flibtool.git * tests/build-relink2.test: look for installed libl3.la in $prefix/lib/ as well as $prefix/lib/extra/. --- diff --git a/ChangeLog b/ChangeLog index 943a1829d..442862f5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-05-30 Charles Wilson + + * tests/build-relink2.test: look for installed libl3.la + in $prefix/lib/ as well as $prefix/lib/extra/. + 2002-05-30 Gary V. Vaughan * tests/hardcode.test: Use libtool --config to collect the diff --git a/tests/build-relink2.test b/tests/build-relink2.test index 42fe1e7e1..52f940832 100755 --- a/tests/build-relink2.test +++ b/tests/build-relink2.test @@ -11,7 +11,8 @@ fi . $srcdir/defs || exit 1 # Check that things are built. -if test -f $prefix/lib/extra/libl3.la && cd ../depdemo && test -f l3/libl3.la; then : +if (test -f $prefix/lib/extra/libl3.la || test -f $prefix/lib/libl3.la) \ + && cd ../depdemo && test -f l3/libl3.la; then : else echo "You must run depdemo-inst.test before $0" 1>&2 exit 77