From: <abe...@us...> - 2017-02-07 14:14:28
|
Revision: 8151 http://sourceforge.net/p/astlinux/code/8151 Author: abelbeck Date: 2017-02-07 14:14:26 +0000 (Tue, 07 Feb 2017) Log Message: ----------- ipsec-tools, build system, remove useless spaces in conditions and fix typo in variable name no functional change with our config Modified Paths: -------------- branches/1.0/package/ipsec-tools/ipsec-tools.mk Modified: branches/1.0/package/ipsec-tools/ipsec-tools.mk =================================================================== --- branches/1.0/package/ipsec-tools/ipsec-tools.mk 2017-02-06 13:27:26 UTC (rev 8150) +++ branches/1.0/package/ipsec-tools/ipsec-tools.mk 2017-02-07 14:14:26 UTC (rev 8151) @@ -23,25 +23,25 @@ --localstatedir=/var \ --with-kernel-headers=$(STAGING_DIR)/usr/include -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT),y) IPSEC_TOOLS_CONF_OPT+= --enable-adminport else IPSEC_TOOLS_CONF_OPT+= --disable-adminport endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_NATT), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_NATT),y) IPSEC_TOOLS_CONF_OPT+= --enable-natt else IPSEC_TOOLS_CONF_OPT+= --disable-natt endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_FRAG), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_FRAG),y) IPSEC_TOOLS_CONF_OPT+= --enable-frag else IPSEC_TOOLS_CONF_OPT+= --disable-frag endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_STATS), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_STATS),y) IPSEC_TOOLS_CONF_OPT+= --enable-stats else IPSEC_TOOLS_CONF_OPT+= --disable-stats @@ -53,10 +53,10 @@ IPSEC_TOOLS_CONF_OPT+= --disable-ipv6 endif -ifneq ($(BR2_PACKAGE_IPSEC_TOOLS_READLINE), y) +ifneq ($(BR2_PACKAGE_IPSEC_TOOLS_READLINE),y) IPSEC_TOOLS_CONF_OPT+= --without-readline else -IPSEC_DEPENDENCIES += readline +IPSEC_TOOLS_DEPENDENCIES += readline endif ifeq ($(BR2_PACKAGE_IPSEC_SECCTX_DISABLE),y) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |