ipsec-tools: remove useless spaces in conditions

We typically use:

ifeq ($(BR2_...),y)

and not:

ifeq ($(BR2_...), y)

So this commit aligns the ipsec-tools package with this common
practice.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2015-02-01 23:25:46 +01:00
parent 9849366388
commit c0c4ee62c0

View File

@ -25,43 +25,43 @@ IPSEC_TOOLS_CONF_OPTS = \
--disable-gssapi \ --disable-gssapi \
--with-kernel-headers=$(STAGING_DIR)/usr/include --with-kernel-headers=$(STAGING_DIR)/usr/include
ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT), y) ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT),y)
IPSEC_TOOLS_CONF_OPTS += --enable-adminport IPSEC_TOOLS_CONF_OPTS += --enable-adminport
else else
IPSEC_TOOLS_CONF_OPTS += --disable-adminport IPSEC_TOOLS_CONF_OPTS += --disable-adminport
endif endif
ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_NATT), y) ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_NATT),y)
IPSEC_TOOLS_CONF_OPTS += --enable-natt IPSEC_TOOLS_CONF_OPTS += --enable-natt
else else
IPSEC_TOOLS_CONF_OPTS += --disable-natt IPSEC_TOOLS_CONF_OPTS += --disable-natt
endif endif
ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_FRAG), y) ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_FRAG),y)
IPSEC_TOOLS_CONF_OPTS += --enable-frag IPSEC_TOOLS_CONF_OPTS += --enable-frag
else else
IPSEC_TOOLS_CONF_OPTS += --disable-frag IPSEC_TOOLS_CONF_OPTS += --disable-frag
endif endif
ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_DPD), y) ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_DPD),y)
IPSEC_TOOLS_CONF_OPTS += --enable-dpd IPSEC_TOOLS_CONF_OPTS += --enable-dpd
else else
IPSEC_TOOLS_CONF_OPTS += --disable-dpd IPSEC_TOOLS_CONF_OPTS += --disable-dpd
endif endif
ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_STATS), y) ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_STATS),y)
IPSEC_TOOLS_CONF_OPTS += --enable-stats IPSEC_TOOLS_CONF_OPTS += --enable-stats
else else
IPSEC_TOOLS_CONF_OPTS += --disable-stats IPSEC_TOOLS_CONF_OPTS += --disable-stats
endif endif
ifneq ($(BR2_PACKAGE_IPSEC_TOOLS_READLINE), y) ifneq ($(BR2_PACKAGE_IPSEC_TOOLS_READLINE),y)
IPSEC_TOOLS_CONF_OPTS += --without-readline IPSEC_TOOLS_CONF_OPTS += --without-readline
else else
IPSEC_DEPENDENCIES += readline IPSEC_DEPENDENCIES += readline
endif endif
ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_HYBRID), y) ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_HYBRID),y)
IPSEC_TOOLS_CONF_OPTS += --enable-hybrid IPSEC_TOOLS_CONF_OPTS += --enable-hybrid
else else
IPSEC_TOOLS_CONF_OPTS += --disable-hybrid IPSEC_TOOLS_CONF_OPTS += --disable-hybrid