summaryrefslogtreecommitdiffstats
path: root/package/libssh2
diff options
context:
space:
mode:
Diffstat (limited to 'package/libssh2')
-rw-r--r--package/libssh2/libssh2.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/package/libssh2/libssh2.mk b/package/libssh2/libssh2.mk
index 50bd2657cb..67064ebc57 100644
--- a/package/libssh2/libssh2.mk
+++ b/package/libssh2/libssh2.mk
@@ -9,18 +9,18 @@ LIBSSH2_SITE = http://www.libssh2.org/download
LIBSSH2_LICENSE = BSD
LIBSSH2_LICENSE_FILES = COPYING
LIBSSH2_INSTALL_STAGING = YES
-LIBSSH2_CONF_OPT = --disable-examples-build
+LIBSSH2_CONF_OPTS = --disable-examples-build
# libssh2 must use either libgcrypt or OpenSSL
# Only select openssl if libgcrypt is not selected
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
LIBSSH2_DEPENDENCIES += libgcrypt
-LIBSSH2_CONF_OPT += --with-libgcrypt \
+LIBSSH2_CONF_OPTS += --with-libgcrypt \
--with-libgcrypt-prefix=$(STAGING_DIR)/usr \
--without-openssl
else
LIBSSH2_DEPENDENCIES += openssl
-LIBSSH2_CONF_OPT += --with-openssl \
+LIBSSH2_CONF_OPTS += --with-openssl \
--with-libssl-prefix=$(STAGING_DIR)/usr \
--without-libgcrypt
endif
@@ -28,9 +28,9 @@ endif
# Add zlib support if enabled
ifeq ($(BR2_PACKAGE_ZLIB),y)
LIBSSH2_DEPENDENCIES += zlib
-LIBSSH2_CONF_OPT += --with-libz
+LIBSSH2_CONF_OPTS += --with-libz
else
-LIBSSH2_CONF_OPT += --without-libz
+LIBSSH2_CONF_OPTS += --without-libz
endif
$(eval $(autotools-package))
OpenPOWER on IntegriCloud