summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/perl/libxml-parser-perl-native_2.40.bb7
-rw-r--r--meta/recipes-devtools/perl/libxml-parser-perl_2.40.bb15
2 files changed, 11 insertions, 11 deletions
diff --git a/meta/recipes-devtools/perl/libxml-parser-perl-native_2.40.bb b/meta/recipes-devtools/perl/libxml-parser-perl-native_2.40.bb
deleted file mode 100644
index 8c2045567f..0000000000
--- a/meta/recipes-devtools/perl/libxml-parser-perl-native_2.40.bb
+++ /dev/null
@@ -1,7 +0,0 @@
1SECTION = "libs"
2
3require libxml-parser-perl_${PV}.bb
4
5inherit native
6
7DEPENDS += "expat-native"
diff --git a/meta/recipes-devtools/perl/libxml-parser-perl_2.40.bb b/meta/recipes-devtools/perl/libxml-parser-perl_2.40.bb
index 3c8f1c9ab9..3f1a0ad500 100644
--- a/meta/recipes-devtools/perl/libxml-parser-perl_2.40.bb
+++ b/meta/recipes-devtools/perl/libxml-parser-perl_2.40.bb
@@ -1,12 +1,13 @@
1DESCRIPTION = "XML::Parser - A perl module for parsing XML documents"
1SECTION = "libs" 2SECTION = "libs"
2LICENSE = "Artistic" 3LICENSE = "Artistic"
3LIC_FILES_CHKSUM = "file://README;beginline=2;endline=6;md5=c8767d7516229f07b26e42d1cf8b51f1" 4LIC_FILES_CHKSUM = "file://README;beginline=2;endline=6;md5=c8767d7516229f07b26e42d1cf8b51f1"
5
4DEPENDS += "expat expat-native" 6DEPENDS += "expat expat-native"
5 7
6PR = "r2" 8PR = "r3"
7 9
8SRC_URI = "http://www.cpan.org/modules/by-module/XML/XML-Parser-${PV}.tar.gz" 10SRC_URI = "http://www.cpan.org/modules/by-module/XML/XML-Parser-${PV}.tar.gz"
9
10SRC_URI[md5sum] = "c66e9adba003d0667cc40115ccd837a5" 11SRC_URI[md5sum] = "c66e9adba003d0667cc40115ccd837a5"
11SRC_URI[sha256sum] = "e5e433684e799ef7b6b852c0ca31b71054717628555444d3dc9fceac0df71512" 12SRC_URI[sha256sum] = "e5e433684e799ef7b6b852c0ca31b71054717628555444d3dc9fceac0df71512"
12 13
@@ -16,10 +17,16 @@ EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR}
16 17
17inherit cpan 18inherit cpan
18 19
19FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/XML/Parser/Expat/.debug/"
20
21do_compile() { 20do_compile() {
22 export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" 21 export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')"
23 cpan_do_compile 22 cpan_do_compile
24} 23}
25 24
25do_compile_virtclass-native() {
26 cpan_do_compile
27}
28
29FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/XML/Parser/Expat/.debug/"
30
31BBCLASSEXTEND="native"
32