From 48d9c84a994ef3ce44590dc5f5ee10eb17f3e094 Mon Sep 17 00:00:00 2001 From: Kevin Darbyshire-Bryant Date: Fri, 8 Jun 2018 11:46:55 +0100 Subject: [PATCH] miniupnpd: fix build error when ASLR enabled Add -fPIC to TARGET_LD_FLAGS ce9TpAS.ltrans0.ltrans.o: relocation R_MIPS16_26 against `syslog' can not be used when making a shared object; recompile with -fPIC cce9TpAS.ltrans0.ltrans.o: error adding symbols: Bad value Signed-off-by: Kevin Darbyshire-Bryant --- net/miniupnpd/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/miniupnpd/Makefile b/net/miniupnpd/Makefile index 02f95541c1..faba7a2d91 100644 --- a/net/miniupnpd/Makefile +++ b/net/miniupnpd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=miniupnpd PKG_VERSION:=2.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_URL:=http://miniupnp.free.fr/files PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -40,7 +40,7 @@ define Build/Prepare endef TARGET_CFLAGS += -flto -ffunction-sections -fdata-sections -TARGET_LDFLAGS += -flto -Wl,--gc-sections +TARGET_LDFLAGS += $(FPIC) -flto -Wl,--gc-sections MAKE_FLAGS += \ TARGET_OPENWRT=1 TEST=0 LIBS="" \ CC="$(TARGET_CC) -DIPTABLES_143 -lip4tc -luuid \ -- 2.30.2