diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-21 14:39:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-21 14:43:13 +0000 |
commit | c206007235df3e00c21a1cbf30e8a1bccc07a9e5 (patch) | |
tree | 4e60ace6e7f45d0b9f07ba2855d9ef8102eb600b | |
parent | dee77eca39f406f90e60d9c5ef7a66fcc8f57dbf (diff) | |
download | poky-c206007235df3e00c21a1cbf30e8a1bccc07a9e5.tar.gz |
libcheck: Add missing rdepends on gawk and set path correctly
The new version of libcheck needs gawk and we need to ensure the paths are
not taken from the build system.
(From OE-Core rev: 120bea8043d3a05174ed034e20d9094784402824)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/libcheck/libcheck_0.9.9.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-support/libcheck/libcheck_0.9.9.bb b/meta/recipes-support/libcheck/libcheck_0.9.9.bb index 5ccce7a28b..f3fa5467d9 100644 --- a/meta/recipes-support/libcheck/libcheck_0.9.9.bb +++ b/meta/recipes-support/libcheck/libcheck_0.9.9.bb | |||
@@ -5,7 +5,7 @@ SECTION = "devel" | |||
5 | LICENSE = "LGPLv2.1+" | 5 | LICENSE = "LGPLv2.1+" |
6 | LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1" | 6 | LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1" |
7 | 7 | ||
8 | PR = "r0" | 8 | PR = "r1" |
9 | 9 | ||
10 | SRC_URI = "${SOURCEFORGE_MIRROR}/check/check-${PV}.tar.gz \ | 10 | SRC_URI = "${SOURCEFORGE_MIRROR}/check/check-${PV}.tar.gz \ |
11 | file://libcheck_fix_for_automake-1.12.patch \ | 11 | file://libcheck_fix_for_automake-1.12.patch \ |
@@ -18,4 +18,7 @@ S = "${WORKDIR}/check-${PV}" | |||
18 | 18 | ||
19 | inherit autotools pkgconfig | 19 | inherit autotools pkgconfig |
20 | 20 | ||
21 | CACHED_CONFIGUREVARS += "ac_cv_path_AWK_PATH=${bindir}/gawk" | ||
22 | |||
21 | RREPLACES_${PN} = "check (<= 0.9.5)" | 23 | RREPLACES_${PN} = "check (<= 0.9.5)" |
24 | RDEPENDS_${PN} += "gawk" | ||