debianpkg rules files: WANT_CUMULUS_MODE, not WANT_CUMULUS_NODE

variable name seemed strange, and previously-commented-out name
suggests it was a typo, remove the newly-added definitions and
fix the ifeq block to reference the intended name.

Signed-off-by: Silas McCroskey <smccroskey@cumulusnetworks.com>
This commit is contained in:
smccroskey 2018-01-31 17:15:36 -08:00
parent f1aaa729eb
commit a2ec1de2ce
3 changed files with 3 additions and 6 deletions

View File

@ -15,7 +15,6 @@ WANT_BGP_VNC ?= 1
WANT_CUMULUS_MODE ?= 0
WANT_MULTIPATH ?= 1
WANT_SNMP ?= 0
WANT_CUMULUS_NODE ?= 0
# If multipath is enabled (WANT_MULTIPATH=1), then set number of multipaths here
# Please be aware that 0 is NOT disabled, but treated as unlimited
@ -83,7 +82,7 @@ else
USE_MULTIPATH=--disable-multipath
endif
ifeq ($(WANT_CUMULUS_NODE), 1)
ifeq ($(WANT_CUMULUS_MODE), 1)
USE_CUMULUS=--enable-cumulus=yes
else
USE_CUMULUS=--enable-cumulus=no

View File

@ -15,7 +15,6 @@ WANT_BGP_VNC ?= 1
WANT_CUMULUS_MODE ?= 0
WANT_MULTIPATH ?= 1
WANT_SNMP ?= 0
WANT_CUMULUS_NODE ?= 0
# If multipath is enabled (WANT_MULTIPATH=1), then set number of multipaths here
# Please be aware that 0 is NOT disabled, but treated as unlimited
@ -83,7 +82,7 @@ else
USE_MULTIPATH=--disable-multipath
endif
ifeq ($(WANT_CUMULUS_NODE), 1)
ifeq ($(WANT_CUMULUS_MODE), 1)
USE_CUMULUS=--enable-cumulus=yes
else
USE_CUMULUS=--enable-cumulus=no

View File

@ -15,7 +15,6 @@ WANT_BGP_VNC ?= 1
WANT_CUMULUS_MODE ?= 0
WANT_MULTIPATH ?= 1
WANT_SNMP ?= 0
WANT_CUMULUS_NODE ?= 0
# If multipath is enabled (WANT_MULTIPATH=1), then set number of multipaths here
# Please be aware that 0 is NOT disabled, but treated as unlimited
@ -83,7 +82,7 @@ else
USE_MULTIPATH=--disable-multipath
endif
ifeq ($(WANT_CUMULUS_NODE), 1)
ifeq ($(WANT_CUMULUS_MODE), 1)
USE_CUMULUS=--enable-cumulus=yes
else
USE_CUMULUS=--enable-cumulus=no