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 /ripngd | |
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 'ripngd')
-rw-r--r-- | ripngd/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ripngd/Makefile.am b/ripngd/Makefile.am index 7e4c1004f..d5736ee52 100644 --- a/ripngd/Makefile.am +++ b/ripngd/Makefile.am @@ -4,8 +4,7 @@ INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir) DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" INSTALL_SDATA=@INSTALL@ -m 600 -AM_CFLAGS = $(PICFLAGS) $(WERROR) -AM_LDFLAGS = $(PILDFLAGS) +AM_CFLAGS = $(WERROR) noinst_LIBRARIES = libripng.a sbin_PROGRAMS = ripngd |