From: Daniel Engberg Date: Tue, 8 Aug 2017 07:24:43 +0000 (+0200) Subject: net/nmap: Avoid linking libssh2 unintentionally X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=470032938ba25962db27ac7bfa17a7046acb83dd;p=openwrt-packages.git net/nmap: Avoid linking libssh2 unintentionally Explicitly tell nmap not to link libssh2 if its available, fixes buildbot failure. Signed-off-by: Daniel Engberg --- diff --git a/net/nmap/Makefile b/net/nmap/Makefile index b4595d72e..064e33f72 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