1From 27e37d2621317d25e08ba0683bf8540b05b9347d Mon Sep 17 00:00:00 2001 2From: Philippe Proulx <eeppeliteloop@gmail.com> 3Date: Fri, 28 Oct 2016 02:09:20 -0400 4Subject: [PATCH] tests/lib/Makefile.am: remove unneeded -static flag 5 6Having those -static flags breaks the build in shared-only builds. 7 8Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com> 9[Philippe: grabbed from this pull request: 10 https://github.com/efficios/babeltrace/pull/49 11] 12--- 13 tests/lib/Makefile.am | 2 -- 14 1 file changed, 2 deletions(-) 15 16diff --git a/tests/lib/Makefile.am b/tests/lib/Makefile.am 17index 33ada16..c685e77 100644 18--- a/tests/lib/Makefile.am 19+++ b/tests/lib/Makefile.am 20@@ -31,13 +31,11 @@ check_SCRIPTS = test_seek_big_trace \ 21 test_ctf_writer_complete 22 23 if ENABLE_DEBUG_INFO 24-test_dwarf_LDFLAGS = -static 25 test_dwarf_LDADD = $(LIBTAP) \ 26 $(top_builddir)/lib/libbabeltrace.la \ 27 $(top_builddir)/lib/libdebug-info.la 28 test_dwarf_SOURCES = test_dwarf.c 29 30-test_bin_info_LDFLAGS = -static 31 test_bin_info_LDADD = $(LIBTAP) \ 32 $(top_builddir)/lib/libbabeltrace.la \ 33 $(top_builddir)/lib/libdebug-info.la 34-- 352.9.3 36 37