From: Eric Salama Date: Tue, 5 Feb 2019 10:51:23 +0000 Subject: [PATCH] do not execute pkg-config --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e0000ef..d1af63d 100644 --- a/Makefile +++ b/Makefile @@ -68,7 +68,7 @@ OBJS = ipvsadm.o config_stream.o dynamic_array.o LIBS = -lpopt ifneq (0,$(HAVE_NL)) LIBS += $(shell \ - if which pkg-config > /dev/null 2>&1; then \ + if false && which pkg-config > /dev/null 2>&1; then \ if pkg-config --libs libnl-genl-3.0 2> /dev/null; then :;\ elif pkg-config --libs libnl-2.0 2> /dev/null; then :;\ elif pkg-config --libs libnl-1 2> /dev/null; then :;\ -- 2.17.1