From: Stefano Lattarini Date: Sat, 9 Jun 2012 18:13:43 +0000 (+0200) Subject: tests: look for '.lo' rather than '.o' object when using Libtool with C++ X-Git-Tag: v1.12.2~87 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=066c8cadf20ada22b922a1f0a8ba49c2f0d20f0b;p=platform%2Fupstream%2Fautomake.git 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 --- diff --git a/t/cxx-lt-demo.sh b/t/cxx-lt-demo.sh index ef2bc78..3c931e0 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'