From 470032938ba25962db27ac7bfa17a7046acb83dd Mon Sep 17 00:00:00 2001 From: Daniel Engberg Date: Tue, 8 Aug 2017 09:24:43 +0200 Subject: [PATCH] net/nmap: Avoid linking libssh2 unintentionally Explicitly tell nmap not to link libssh2 if its available, fixes buildbot failure. Signed-off-by: Daniel Engberg --- net/nmap/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/nmap/Makefile b/net/nmap/Makefile index b4595d72ef..064e33f721 100644 --- a/net/nmap/Makefile +++ b/net/nmap/Makefile @@ -95,7 +95,7 @@ CONFIGURE_VARS += \ CXXFLAGS="$$$$CXXFLAGS -fno-builtin" ifeq ($(BUILD_VARIANT),ssl) - CONFIGURE_ARGS += --with-openssl="$(STAGING_DIR)/usr" + CONFIGURE_ARGS += --with-openssl="$(STAGING_DIR)/usr" --without-libssh2 else CONFIGURE_ARGS += --without-openssl endif