diff options
Diffstat (limited to 'package/bandwidthd')
-rw-r--r-- | package/bandwidthd/bandwidthd.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/bandwidthd/bandwidthd.mk b/package/bandwidthd/bandwidthd.mk index 3e11d6abb1..7a2975fe47 100644 --- a/package/bandwidthd/bandwidthd.mk +++ b/package/bandwidthd/bandwidthd.mk @@ -15,20 +15,20 @@ BANDWIDTHD_DEPENDENCIES = gd libpng libpcap BANDWIDTHD_AUTORECONF = YES -BANDWIDTHD_CONF_OPT += --without-x +BANDWIDTHD_CONF_OPTS += --without-x ifeq ($(BR2_PACKAGE_BANDWIDTHD_POSTGRESQL),y) BANDWIDTHD_DEPENDENCIES += postgresql -BANDWIDTHD_CONF_OPT += --with-postgresql-logging=true +BANDWIDTHD_CONF_OPTS += --with-postgresql-logging=true else -BANDWIDTHD_CONF_OPT += --with-postgresql-logging=false +BANDWIDTHD_CONF_OPTS += --with-postgresql-logging=false endif ifeq ($(BR2_PACKAGE_BANDWIDTHD_SQLITE3),y) BANDWIDTHD_DEPENDENCIES += sqlite -BANDWIDTHD_CONF_OPT += --with-sqlite-storage=true +BANDWIDTHD_CONF_OPTS += --with-sqlite-storage=true else -BANDWIDTHD_CONF_OPT += --with-sqlite-storage=false +BANDWIDTHD_CONF_OPTS += --with-sqlite-storage=false endif $(eval $(autotools-package)) |