[openwrt/openwrt] libnfnetlink: quote $(FPIC) on command line

LEDE Commits lede-commits at lists.infradead.org
Mon Apr 12 20:04:23 BST 2021


hauke pushed a commit to openwrt/openwrt.git, branch openwrt-21.02:
https://git.openwrt.org/46362c48c8c6e4df9d117a4a42083760bec454d8

commit 46362c48c8c6e4df9d117a4a42083760bec454d8
Author: Philip Prindeville <philipp at redfish-solutions.com>
AuthorDate: Fri Mar 19 17:09:26 2021 -0600

    libnfnetlink: quote $(FPIC) on command line
    
    When $(FPIC) gets expanded on the command line (for instance
    when setting environment variables for libtool, configure, or
    make) we can't count on it not needing quoting (i.e. it could
    contain multiple flags separated with spaces).
    
    Fixes: dc31191ec3e5 ("build: make sure asm gets built with -DPIC")
    Signed-off-by: Philip Prindeville <philipp at redfish-solutions.com>
    (cherry picked from commit 7fae64cc065738b73a1dddc2fc28adde36c1ae3d)
---
 package/libs/libnfnetlink/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/libs/libnfnetlink/Makefile b/package/libs/libnfnetlink/Makefile
index 7d65d63857..bc64ff111d 100644
--- a/package/libs/libnfnetlink/Makefile
+++ b/package/libs/libnfnetlink/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=libnfnetlink
 PKG_VERSION:=1.0.1
-PKG_RELEASE:=3
+PKG_RELEASE:=4
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_URL:= \
@@ -45,7 +45,7 @@ CONFIGURE_ARGS += \
 	--enable-shared
 
 CONFIGURE_VARS += \
-	lt_prog_compiler_pic=$(FPIC)
+	lt_prog_compiler_pic="$(FPIC)"
 
 define Build/InstallDev
 	$(INSTALL_DIR) $(1)/usr/include/libnfnetlink



More information about the lede-commits mailing list