diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-08 08:15:27 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-08 08:15:27 +0000 |
commit | ac1d92c425414bad889c1a60d0d2aee25581b74f (patch) | |
tree | aaa3969c6c1d78dc7f9ff5ba2577551813ff7e4b /package/neon/neon.mk | |
parent | 6250131be126b91d7feb8ae4c02fd7ca3725cc9e (diff) |
package/: get rid of unneeded $(strip ..)
Diffstat (limited to 'package/neon/neon.mk')
-rw-r--r-- | package/neon/neon.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/neon/neon.mk b/package/neon/neon.mk index 78c1ad35e..e92e134b6 100644 --- a/package/neon/neon.mk +++ b/package/neon/neon.mk @@ -11,17 +11,17 @@ NEON_CONF_OPT:=--enable-shared --without-gssapi --disable-rpath NEON_DEPENDENCIES:=pkgconfig -ifeq ($(strip $(BR2_PACKAGE_NEON_LIBXML2)),y) +ifeq ($(BR2_PACKAGE_NEON_LIBXML2),y) NEON_CONF_OPT+=--with-libxml2=yes NEON_CONF_OPT+=--with-expat=no NEON_DEPENDENCIES+=libxml2 endif -ifeq ($(strip $(BR2_PACKAGE_NEON_EXPAT)),y) +ifeq ($(BR2_PACKAGE_NEON_EXPAT),y) NEON_CONF_OPT+=--with-expat=$(STAGING_DIR)/usr/lib/libexpat.la NEON_CONF_OPT+=--with-libxml2=no NEON_DEPENDENCIES+=expat endif -ifeq ($(strip $(BR2_PACKAGE_NEON_NOXML)),y) +ifeq ($(BR2_PACKAGE_NEON_NOXML),y) # webdav needs xml support NEON_CONF_OPT+=--disable-webdav endif |