summaryrefslogtreecommitdiffstats
path: root/package/libxslt
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2012-01-18 11:26:20 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2012-01-18 16:02:55 +0100
commitdb8fcd04ba94ce8b2916c624a8231d6505beb301 (patch)
tree731c3e60f748d8a9cf2f31ce129c563dfe5cc22c /package/libxslt
parent24c0ee47f0fe00483c89f74c87e5a53e7dae89f0 (diff)
downloadbuildroot-novena-db8fcd04ba94ce8b2916c624a8231d6505beb301.tar.gz
buildroot-novena-db8fcd04ba94ce8b2916c624a8231d6505beb301.zip
libxslt: cleanup
get rid of unused EXTRA variables. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/libxslt')
-rw-r--r--package/libxslt/libxslt.mk14
1 files changed, 7 insertions, 7 deletions
diff --git a/package/libxslt/libxslt.mk b/package/libxslt/libxslt.mk
index fec85f023..2a1730e94 100644
--- a/package/libxslt/libxslt.mk
+++ b/package/libxslt/libxslt.mk
@@ -8,18 +8,18 @@ LIBXSLT_VERSION = 1.1.26
LIBXSLT_SITE = ftp://xmlsoft.org/libxslt
LIBXSLT_INSTALL_STAGING = YES
+LIBXSLT_CONF_OPT = --with-gnu-ld --without-debug \
+ --without-python --with-libxml-prefix=$(STAGING_DIR)/usr/
+
+LIBXSLT_DEPENDENCIES = libxml2
+
# If we have enabled libgcrypt then use it, else disable crypto support.
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
-LIBXSLT_DEPENDENCIES_EXTRA=libgcrypt
+LIBXSLT_DEPENDENCIES += libgcrypt
else
-LIBXSLT_XTRA_CONF_OPT = --without-crypto
+LIBXSLT_CONF_OPT = --without-crypto
endif
-LIBXSLT_CONF_OPT = --with-gnu-ld $(LIBXSLT_XTRA_CONF_OPT) --without-debug \
- --without-python --with-libxml-prefix=$(STAGING_DIR)/usr/
-
-LIBXSLT_DEPENDENCIES = libxml2 $(LIBXSLT_DEPENDENCIES_EXTRA)
-
HOST_LIBXSLT_CONF_OPT = --without-debug --without-python --without-crypto
HOST_LIBXSLT_DEPENDENCIES = host-libxml2