diff options
Diffstat (limited to 'package/ntp')
-rw-r--r-- | package/ntp/ntp.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/ntp/ntp.mk b/package/ntp/ntp.mk index 6349aaeb53..7c2cb8e504 100644 --- a/package/ntp/ntp.mk +++ b/package/ntp/ntp.mk @@ -15,23 +15,23 @@ ifneq ($(BR2_INET_IPV6),y) NTP_CONF_ENV += isc_cv_have_in6addr_any=no endif -NTP_CONF_OPT = --with-shared \ +NTP_CONF_OPTS = --with-shared \ --program-transform-name=s,,, \ --disable-tickadj ifeq ($(BR2_PACKAGE_OPENSSL),y) - NTP_CONF_OPT += --with-crypto + NTP_CONF_OPTS += --with-crypto NTP_DEPENDENCIES += openssl else - NTP_CONF_OPT += --without-crypto + NTP_CONF_OPTS += --without-crypto endif ifeq ($(BR2_PACKAGE_NTP_NTPSNMPD),y) - NTP_CONF_OPT += \ + NTP_CONF_OPTS += \ --with-net-snmp-config=$(STAGING_DIR)/usr/bin/net-snmp-config NTP_DEPENDENCIES += netsnmp else - NTP_CONF_OPT += --without-ntpsnmpd + NTP_CONF_OPTS += --without-ntpsnmpd endif define NTP_PATCH_FIXUPS |