From: Ján Tomko Date: Wed, 29 Jun 2016 13:16:18 +0000 (+0200) Subject: test/Makefile.am: drop WARN_CFLAGS from LDFLAGS X-Git-Tag: v3.6.0-rc1~132 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=255cd95aab367ab3676fec54af2950af2535a30f;p=thirdparty%2Flibvirt.git test/Makefile.am: drop WARN_CFLAGS from LDFLAGS Introduced by commit 0832c58, with the intention to link with the stack protector library. Another instance introduced by commit 4cbc15d which separated commandhelper_LDADD from LDADDS. Not needed because per commit 71b54636, automake should pass all the CFLAGS to the linker. --- diff --git a/tests/Makefile.am b/tests/Makefile.am index efc1a310df..5be81d2213 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -76,7 +76,6 @@ GNULIB_LIBS = \ ../gnulib/lib/libgnu.la LDADDS = \ - $(WARN_CFLAGS) \ $(NO_INDIRECT_LDFLAGS) \ $(PROBES_O) \ $(GNULIB_LIBS) \ @@ -934,7 +933,6 @@ commandtest_LDADD = $(LDADDS) commandhelper_SOURCES = \ commandhelper.c commandhelper_LDADD = \ - $(WARN_CFLAGS) \ $(NO_INDIRECT_LDFLAGS) \ $(PROBES_O) \ ../src/libvirt_util.la \