net-analyzer/ntopng: Remove false libzstd dependency

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
This commit is contained in:
Jeroen Roovers
2020-01-19 13:58:37 +01:00
parent 6e5f26f15b
commit 6a2c57bb6f
2 changed files with 6 additions and 6 deletions

View File

@@ -81,15 +81,15 @@
else
ZEROMQ_LIB = $(ZMQ_STATIC)
endif
@@ -107,9 +107,9 @@
@@ -106,11 +106,6 @@
ZEROMQ_INC=-I$(ZEROMQ_HOME)/include
ZEROMQ_LIB=$(ZEROMQ_HOME)/.libs/libzmq.a
endif
-
- HAS_ZSTD=$(shell pkg-config --exists libzstd; echo $$?)
+ HAS_ZSTD=$(shell $(PKG_CONFIG) --exists libzstd; echo $$?)
ifeq ($(HAS_ZSTD), 0)
- ifeq ($(HAS_ZSTD), 0)
- ZSTD_LIB = $(shell pkg-config --libs libzstd)
+ ZSTD_LIB = $(shell $(PKG_CONFIG) --libs libzstd)
endif
- endif
endif
######