diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-02-01 23:25:46 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-02-01 23:25:46 +0100 |
| commit | c0c4ee62c0edad02d2e7d846d8489c625a76d774 (patch) | |
| tree | 9b027c2c3b23365020066ff3ef47d6fdfc110196 | |
| parent | 9849366388f9695b2aa532302ab67dcc47c8924d (diff) | |
| download | buildroot-c0c4ee62c0edad02d2e7d846d8489c625a76d774.tar.gz buildroot-c0c4ee62c0edad02d2e7d846d8489c625a76d774.zip | |
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>
| -rw-r--r-- | package/ipsec-tools/ipsec-tools.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/package/ipsec-tools/ipsec-tools.mk b/package/ipsec-tools/ipsec-tools.mk index 56e2bed7fd..9454c4e765 100644 --- a/package/ipsec-tools/ipsec-tools.mk +++ b/package/ipsec-tools/ipsec-tools.mk @@ -25,43 +25,43 @@ IPSEC_TOOLS_CONF_OPTS = \ --disable-gssapi \ --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 else IPSEC_TOOLS_CONF_OPTS += --disable-adminport endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_NATT), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_NATT),y) IPSEC_TOOLS_CONF_OPTS += --enable-natt else IPSEC_TOOLS_CONF_OPTS += --disable-natt endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_FRAG), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_FRAG),y) IPSEC_TOOLS_CONF_OPTS += --enable-frag else IPSEC_TOOLS_CONF_OPTS += --disable-frag endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_DPD), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_DPD),y) IPSEC_TOOLS_CONF_OPTS += --enable-dpd else IPSEC_TOOLS_CONF_OPTS += --disable-dpd endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_STATS), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_STATS),y) IPSEC_TOOLS_CONF_OPTS += --enable-stats else IPSEC_TOOLS_CONF_OPTS += --disable-stats endif -ifneq ($(BR2_PACKAGE_IPSEC_TOOLS_READLINE), y) +ifneq ($(BR2_PACKAGE_IPSEC_TOOLS_READLINE),y) IPSEC_TOOLS_CONF_OPTS += --without-readline else IPSEC_DEPENDENCIES += readline endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_HYBRID), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_HYBRID),y) IPSEC_TOOLS_CONF_OPTS += --enable-hybrid else IPSEC_TOOLS_CONF_OPTS += --disable-hybrid |

