From: Thomas De Schampheleire Date: Sun, 26 Jul 2015 18:58:31 +0000 (+0200) Subject: nmap: remove redundant --static flag to pkg-config X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c38869b41b7b6b0ace06884ff13c5d751023b861;p=buildroot.git nmap: remove redundant --static flag to pkg-config The pkg-config tool is automatically passing --static when BR2_STATIC_LIBS is set (see package/pkgconf/pkgconf.mk), so no need to pass it explicitly from package .mk files. Additionally, replace a missed occurrence of $(shell) with backticks. Signed-off-by: Thomas De Schampheleire Reviewed-by: "Yann E. MORIN" Signed-off-by: Thomas Petazzoni --- diff --git a/package/nmap/nmap.mk b/package/nmap/nmap.mk index d450f5e99b..1a0e977d39 100644 --- a/package/nmap/nmap.mk +++ b/package/nmap/nmap.mk @@ -30,7 +30,7 @@ NMAP_POST_PATCH_HOOKS += NMAP_WRAPPER_EXEC ifeq ($(BR2_PACKAGE_OPENSSL),y) NMAP_CONF_OPTS += --with-openssl="$(STAGING_DIR)/usr" NMAP_DEPENDENCIES += host-pkgconf openssl -NMAP_LIBS_FOR_STATIC_LINK += $(shell $(PKG_CONFIG_HOST_BINARY) --libs --static openssl) +NMAP_LIBS_FOR_STATIC_LINK += `$(PKG_CONFIG_HOST_BINARY) --libs openssl` else NMAP_CONF_OPTS += --without-openssl endif