diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-01-27 09:21:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-27 09:47:47 +0000 |
commit | ed6968b731e8ebc161fa59e18a9284bddf86c61b (patch) | |
tree | 80af9e965efd263f43c2464263452774681d8523 /meta/recipes-devtools | |
parent | ffc7bbcf0011de3f1f6e8d95f1de0b8f7164fa51 (diff) | |
download | openembedded-core-ed6968b731e8ebc161fa59e18a9284bddf86c61b.tar.gz openembedded-core-ed6968b731e8ebc161fa59e18a9284bddf86c61b.tar.bz2 openembedded-core-ed6968b731e8ebc161fa59e18a9284bddf86c61b.zip |
libtool 2.4.2: fix missing quote in FILES_libtldtl
The missing quote prohibits OE from packaging it correctly, leading to:
| * satisfy_dependencies_for: Cannot satisfy the following dependencies for task-gnome:
| * libltdl7 (>= 2.4.2) * libltdl7 (>= 2.4.2) * libltdl7 (>= 2.4.2) * libltdl7 (>= 2.4.2) * libltdl7 (>= 2.4.2) * libltdl7 (>= 2.4.2) * libltdl7 (>= 2.4.2) *
for incremental builds and binary feeds.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/libtool/libtool-2.4.2.inc b/meta/recipes-devtools/libtool/libtool-2.4.2.inc index d55b2bd597..084062aff6 100644 --- a/meta/recipes-devtools/libtool/libtool-2.4.2.inc +++ b/meta/recipes-devtools/libtool/libtool-2.4.2.inc @@ -8,7 +8,7 @@ LICENSE = "GPLv2 & LGPLv2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ file://libltdl/COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06" -INC_PR = "r1" +INC_PR = "r2" SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ file://trailingslash.patch \ @@ -36,7 +36,7 @@ DEPENDS = "libtool-native" PACKAGES =+ "libltdl libltdl-dev libltdl-dbg libltdl-staticdev" FILES_${PN} += "${datadir}/aclocal*" -FILES_libltdl = "${libdir}/libltdl${SOLIBS} +FILES_libltdl = "${libdir}/libltdl${SOLIBS}" FILES_libltdl-dev = "${libdir}/libltdl${SOLIBSDEV} ${includedir}" FILES_libltdl-staticdev = "${libdir}/libltdl.a" FILES_libltdl-dbg = "${libdir}/.debug/" |