summaryrefslogtreecommitdiffstats
path: root/package/libxslt
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-06-15 17:48:33 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2008-06-15 17:48:33 +0000
commite34521b47e7ccd232f99042660ae4440a1beed71 (patch)
tree45e42cdf1d99eaa5992f60ce4df04596f75b378f /package/libxslt
parent565e05c8a18ecb7ffff0018b598218d32399d8b7 (diff)
downloadbuildroot-novena-e34521b47e7ccd232f99042660ae4440a1beed71.tar.gz
buildroot-novena-e34521b47e7ccd232f99042660ae4440a1beed71.zip
libxslt: use select instead of depends for pkgconfig like other packages
There's not much point in using depends instead of select for pkgconfig as it's a host tool, E.G. it doesn't add anything to the rootfs. At the same time, strip Config.in of trailing spaces.
Diffstat (limited to 'package/libxslt')
-rw-r--r--package/libxslt/Config.in13
1 files changed, 5 insertions, 8 deletions
diff --git a/package/libxslt/Config.in b/package/libxslt/Config.in
index c0e5cb632..d4e988f98 100644
--- a/package/libxslt/Config.in
+++ b/package/libxslt/Config.in
@@ -1,21 +1,18 @@
config BR2_PACKAGE_LIBXSLT
bool "libxslt"
default n
- depends BR2_PACKAGE_PKGCONFIG
+ select BR2_PACKAGE_PKGCONFIG
help
Install the xslt library which is used
to transform XML files to other XML files.
- XSLT is designed for use as part of XSL,
- which is a stylesheet language for XML.
- In addition to XSLT, XSL includes an XML vocabulary
- for specifying formatting.
+ XSLT is designed for use as part of XSL,
+ which is a stylesheet language for XML.
+ In addition to XSLT, XSL includes an XML vocabulary
+ for specifying formatting.
XSL specifies the styling of an XML document by using XSLT
to describe how the document is transformed into another
XML document that uses the formatting vocabulary.
http://www.w3.org/TR/xslt
-comment "libxslt - disabled (requires pkgconfig)"
- depends !BR2_PACKAGE_PKGCONFIG
-