summaryrefslogtreecommitdiffstats
path: root/package/neon
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-12-08 08:15:27 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2008-12-08 08:15:27 +0000
commitac1d92c425414bad889c1a60d0d2aee25581b74f (patch)
treeaaa3969c6c1d78dc7f9ff5ba2577551813ff7e4b /package/neon
parent6250131be126b91d7feb8ae4c02fd7ca3725cc9e (diff)
downloadbuildroot-novena-ac1d92c425414bad889c1a60d0d2aee25581b74f.tar.gz
buildroot-novena-ac1d92c425414bad889c1a60d0d2aee25581b74f.zip
package/: get rid of unneeded $(strip ..)
Diffstat (limited to 'package/neon')
-rw-r--r--package/neon/neon.mk6
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