From c8ffe65a48c0cf7c1c0a108efd18ca6abd9e2e78 Mon Sep 17 00:00:00 2001 From: Charles Wilson Date: Fri, 31 May 2002 06:56:10 +0000 Subject: [PATCH] * tests/build-relink2.test: look for installed libl3.la in $prefix/lib/ as well as $prefix/lib/extra/. --- ChangeLog | 5 +++++ tests/build-relink2.test | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) 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 -- 2.47.3