diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-06-09 20:13:43 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-06-11 16:57:54 +0200 |
commit | 066c8cadf20ada22b922a1f0a8ba49c2f0d20f0b (patch) | |
tree | bc5b0dc6fcdf886b3e456d4ca64636b43e81078e /t/cxx-lt-demo.sh | |
parent | dbbcd360554c39a5192ea5a68f9b784cbd9a1a11 (diff) | |
download | automake-066c8cadf20ada22b922a1f0a8ba49c2f0d20f0b.tar.gz |
tests: look for '.lo' rather than '.o' object when using Libtool with C++
* t/cxx-lt-demo.sh: ... in this test.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/cxx-lt-demo.sh')
-rwxr-xr-x | t/cxx-lt-demo.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/cxx-lt-demo.sh b/t/cxx-lt-demo.sh index ef2bc7871..3c931e0d9 100755 --- a/t/cxx-lt-demo.sh +++ b/t/cxx-lt-demo.sh @@ -53,7 +53,7 @@ TESTS = try.sh check-local: test-objs test-objs: test -f src/main.$(OBJEXT) - test -f lib/libfoo.$(OBJEXT) + test -f lib/libfoo.lo END cat > src/Makefile.am << 'END' |