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:52 +0000 |
commit | 973f93c031ed66920284c046f0c0bcc3efbe1580 (patch) | |
tree | 1c9136b4e723ad8061aa14cb41c291893c52090d /meta/recipes-devtools | |
parent | 75fcfde0617cf528a9506fbdc6f7f97e56298bbe (diff) | |
download | poky-973f93c031ed66920284c046f0c0bcc3efbe1580.tar.gz |
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.
(From OE-Core rev: ed6968b731e8ebc161fa59e18a9284bddf86c61b)
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" | |||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ | 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ |
9 | file://libltdl/COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06" | 9 | file://libltdl/COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06" |
10 | 10 | ||
11 | INC_PR = "r1" | 11 | INC_PR = "r2" |
12 | 12 | ||
13 | SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ | 13 | SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ |
14 | file://trailingslash.patch \ | 14 | file://trailingslash.patch \ |
@@ -36,7 +36,7 @@ DEPENDS = "libtool-native" | |||
36 | 36 | ||
37 | PACKAGES =+ "libltdl libltdl-dev libltdl-dbg libltdl-staticdev" | 37 | PACKAGES =+ "libltdl libltdl-dev libltdl-dbg libltdl-staticdev" |
38 | FILES_${PN} += "${datadir}/aclocal*" | 38 | FILES_${PN} += "${datadir}/aclocal*" |
39 | FILES_libltdl = "${libdir}/libltdl${SOLIBS} | 39 | FILES_libltdl = "${libdir}/libltdl${SOLIBS}" |
40 | FILES_libltdl-dev = "${libdir}/libltdl${SOLIBSDEV} ${includedir}" | 40 | FILES_libltdl-dev = "${libdir}/libltdl${SOLIBSDEV} ${includedir}" |
41 | FILES_libltdl-staticdev = "${libdir}/libltdl.a" | 41 | FILES_libltdl-staticdev = "${libdir}/libltdl.a" |
42 | FILES_libltdl-dbg = "${libdir}/.debug/" | 42 | FILES_libltdl-dbg = "${libdir}/.debug/" |