bzip2: fix hardening build

Set the LDFLAGS otherwise it will not get the target hardening flags or
any other generic flags provided in the LDFLAGS

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
Hauke Mehrtens 2019-01-02 00:22:41 +01:00
parent e42a227ee3
commit 6be064c788
1 changed files with 4 additions and 4 deletions

View File

@ -56,14 +56,14 @@ define Package/bzip2/description
endef
TARGET_CFLAGS += \
$(FPIC) \
$(TARGET_LDFLAGS)
$(FPIC)
CONFIGURE_ARGS += --prefix=/usr
MAKE_FLAGS += \
-f Makefile-libbz2_so \
CFLAGS="$(TARGET_CFLAGS)" \
LDFLAGS="$(TARGET_LDFLAGS)" \
all
define Build/InstallDev
@ -89,11 +89,11 @@ define Package/bzip2/install
endef
HOST_CFLAGS += \
$(FPIC) \
$(HOST_LDFLAGS)
$(FPIC)
HOST_MAKE_FLAGS+= \
CFLAGS="$(HOST_CFLAGS)" \
LDFLAGS="$(HOST_LDFLAGS)" \
all
HOST_CONFIGURE_ARGS+= \