summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libxslt/libxslt_1.1.34.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-28 23:28:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-02 15:44:10 +0100
commitbb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch)
tree76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-support/libxslt/libxslt_1.1.34.bb
parentfcc456ee4b8f619134abb4649db53c638074082c (diff)
downloadpoky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz
Convert to new override syntax
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libxslt/libxslt_1.1.34.bb')
-rw-r--r--meta/recipes-support/libxslt/libxslt_1.1.34.bb16
1 files changed, 8 insertions, 8 deletions
diff --git a/meta/recipes-support/libxslt/libxslt_1.1.34.bb b/meta/recipes-support/libxslt/libxslt_1.1.34.bb
index 63cce6fe06..c888f3d7e1 100644
--- a/meta/recipes-support/libxslt/libxslt_1.1.34.bb
+++ b/meta/recipes-support/libxslt/libxslt_1.1.34.bb
@@ -27,7 +27,7 @@ BINCONFIG = "${bindir}/xslt-config"
27 27
28inherit autotools pkgconfig binconfig-disabled lib_package multilib_header 28inherit autotools pkgconfig binconfig-disabled lib_package multilib_header
29 29
30do_configure_prepend () { 30do_configure:prepend () {
31 # We don't DEPEND on binutils for ansidecl.h so ensure we don't use the header. 31 # We don't DEPEND on binutils for ansidecl.h so ensure we don't use the header.
32 # This can be removed when upgrading to 1.1.34. 32 # This can be removed when upgrading to 1.1.34.
33 sed -i -e 's/ansidecl.h//' ${S}/configure.ac 33 sed -i -e 's/ansidecl.h//' ${S}/configure.ac
@@ -39,20 +39,20 @@ do_configure_prepend () {
39 39
40EXTRA_OECONF = "--without-python --without-debug --without-mem-debug --without-crypto --with-html-subdir=${BPN}" 40EXTRA_OECONF = "--without-python --without-debug --without-mem-debug --without-crypto --with-html-subdir=${BPN}"
41# older versions of this recipe had ${PN}-utils 41# older versions of this recipe had ${PN}-utils
42RPROVIDES_${PN}-bin += "${PN}-utils" 42RPROVIDES:${PN}-bin += "${PN}-utils"
43RCONFLICTS_${PN}-bin += "${PN}-utils" 43RCONFLICTS:${PN}-bin += "${PN}-utils"
44RREPLACES_${PN}-bin += "${PN}-utils" 44RREPLACES:${PN}-bin += "${PN}-utils"
45 45
46# This is only needed until libxml can load the relocated catalog itself 46# This is only needed until libxml can load the relocated catalog itself
47do_install_append_class-native () { 47do_install:append:class-native () {
48 create_wrapper ${D}/${bindir}/xsltproc XML_CATALOG_FILES=${sysconfdir}/xml/catalog 48 create_wrapper ${D}/${bindir}/xsltproc XML_CATALOG_FILES=${sysconfdir}/xml/catalog
49} 49}
50 50
51do_install_append () { 51do_install:append () {
52 oe_multilib_header libxslt/xsltconfig.h 52 oe_multilib_header libxslt/xsltconfig.h
53} 53}
54 54
55FILES_${PN} += "${libdir}/libxslt-plugins" 55FILES:${PN} += "${libdir}/libxslt-plugins"
56FILES_${PN}-dev += "${libdir}/xsltConf.sh" 56FILES:${PN}-dev += "${libdir}/xsltConf.sh"
57 57
58BBCLASSEXTEND = "native nativesdk" 58BBCLASSEXTEND = "native nativesdk"