mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
ngrep: fix static build
Commit 54eeb08d64 wrongly replaced
`$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs` by
"$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs"
Fixes:
- http://autobuild.buildroot.org/results/3dd8c768beef075494d6be7eff4cbb57b5ec8a41
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
6a982d037b
commit
16db3937c0
@@ -13,7 +13,7 @@ NGREP_INSTALL_STAGING = YES
|
||||
NGREP_AUTORECONF = YES
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
NGREP_CONF_ENV += LIBS="$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs"
|
||||
NGREP_CONF_ENV += LIBS=`$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`
|
||||
endif
|
||||
|
||||
NGREP_CONF_OPTS = \
|
||||
|
||||
Reference in New Issue
Block a user