diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-13 13:56:29 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-21 13:03:01 +0100 |
commit | 9aa4e69ee18f937c7fdea302ffd093a3e4b6ec91 (patch) | |
tree | feb628414e3538568b8a591a35a10a484d184d83 /meta/recipes-devtools | |
parent | 30e52c5cf619d54a2bfd427bd983042de5bf7df8 (diff) | |
download | poky-9aa4e69ee18f937c7fdea302ffd093a3e4b6ec91.tar.gz |
libtool: add ${PN} in middle of package list to ensure .m4 get with ${PN}
With the new order scheme, ${PN} needs to be in the middle
for the .m4 files to be packaged, otherwise the move the
-dev package which is wrong in this case.
(From OE-Core rev: 57ad9075ea7521e8fa20d62aac31afb2e2130348)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/libtool/libtool-2.4.2.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-devtools/libtool/libtool-2.4.2.inc b/meta/recipes-devtools/libtool/libtool-2.4.2.inc index 05a2e6d2c9..5b9557ee49 100644 --- a/meta/recipes-devtools/libtool/libtool-2.4.2.inc +++ b/meta/recipes-devtools/libtool/libtool-2.4.2.inc | |||
@@ -37,7 +37,12 @@ EXTRA_AUTORECONF = "--exclude=libtoolize" | |||
37 | DEPENDS = "libtool-native" | 37 | DEPENDS = "libtool-native" |
38 | 38 | ||
39 | PACKAGES =+ "libltdl libltdl-dev libltdl-dbg libltdl-staticdev" | 39 | PACKAGES =+ "libltdl libltdl-dev libltdl-dbg libltdl-staticdev" |
40 | FILES_${PN} += "${datadir}/aclocal*" | 40 | FILES_${PN} += "${datadir}/aclocal" |
41 | FILES_${PN}-dev = "${includedir} ${FILES_SOLIBSDEV} ${libdir}/*.la \ | ||
42 | ${libdir}/*.o ${libdir}/pkgconfig ${datadir}/pkgconfig \ | ||
43 | ${base_libdir}/*.o ${libdir}/${BPN}/*.la ${base_libdir}/*.la" | ||
44 | |||
45 | #FILES_${PN}-dev := "${@oe_filter_out('${datadir}/aclocal', '${FILES_libtool-dev}', d)}" | ||
41 | FILES_libltdl = "${libdir}/libltdl${SOLIBS}" | 46 | FILES_libltdl = "${libdir}/libltdl${SOLIBS}" |
42 | FILES_libltdl-dev = "${libdir}/libltdl${SOLIBSDEV} ${includedir}" | 47 | FILES_libltdl-dev = "${libdir}/libltdl${SOLIBSDEV} ${includedir}" |
43 | FILES_libltdl-staticdev = "${libdir}/libltdl.a" | 48 | FILES_libltdl-staticdev = "${libdir}/libltdl.a" |