diff options
author | Paul Jakma <paul@jakma.org> | 2015-08-20 22:30:17 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-05-26 02:38:35 +0200 |
commit | 95bb83054bbf6b5f4fcc7e7ce961d63d74212f9f (patch) | |
tree | d2517bf85a1376d441a63d15a572573721b8615a /ospfclient | |
parent | pimd: Clean up some more compile warnings (diff) | |
download | frr-95bb83054bbf6b5f4fcc7e7ce961d63d74212f9f.tar.xz frr-95bb83054bbf6b5f4fcc7e7ce961d63d74212f9f.zip |
build: Remove the old PIC/PIE patch, let libtool sort it out
* Remove the old change from '08 to add in PIE arguments at automake level.
Versions of libtool since then know how to deal with -fpie and do the right
thing according to whether its building shared or executable objects.
So just pass '-fpie' as CFLAG and let libtool do its thing.
Diffstat (limited to 'ospfclient')
-rw-r--r-- | ospfclient/Makefile.am | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ospfclient/Makefile.am b/ospfclient/Makefile.am index ae43816f6..aa156373d 100644 --- a/ospfclient/Makefile.am +++ b/ospfclient/Makefile.am @@ -22,6 +22,5 @@ ospfclient_SOURCES = \ ospfclient_LDADD = libospfapiclient.la \ ../ospfd/libospf.la ../lib/libzebra.la @LIBCAP@ -ospfclient_CFLAGS = $(AM_CFLAGS) $(PICFLAGS) -ospfclient_LDFLAGS = $(AM_LDFLAGS) $(PILDFLAGS) - +ospfclient_CFLAGS = $(AM_CFLAGS) +ospfclient_LDFLAGS = $(AM_LDFLAGS) |