diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-06-09 09:43:01 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-11 13:32:23 +0100 |
commit | b7c12dd4424f0702c21b1b856af4578d9a4abc90 (patch) | |
tree | 0901f325fb8e144fd847fcc44d9ee5a4fb9ec6bb | |
parent | 7b1caeca8e5c0dd066bb940fe6d2dff4d22bf816 (diff) | |
download | openembedded-core-b7c12dd4424f0702c21b1b856af4578d9a4abc90.tar.gz openembedded-core-b7c12dd4424f0702c21b1b856af4578d9a4abc90.tar.bz2 openembedded-core-b7c12dd4424f0702c21b1b856af4578d9a4abc90.zip |
pth: Mark incompatible with uclibc
pth does not work with uclibc
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/pth/pth_2.0.7.bb | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/meta/recipes-support/pth/pth_2.0.7.bb b/meta/recipes-support/pth/pth_2.0.7.bb index 61865b7242..cdd5eafdd0 100644 --- a/meta/recipes-support/pth/pth_2.0.7.bb +++ b/meta/recipes-support/pth/pth_2.0.7.bb @@ -3,9 +3,17 @@ HOMEPAGE = "http://www.gnu.org/software/pth/" SECTION = "libs" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;beginline=12;endline=15;md5=a48af114a80c222cafd37f24370a77b1" -PR = "r1" +PR = "r2" -SRC_URI = "${GNU_MIRROR}/pth/pth-${PV}.tar.gz" +python __anonymous () { + import bb, re + uc_os = (re.match('.*uclibc*', d.getVar('TARGET_OS', True)) != None) + if uc_os: + raise bb.parse.SkipPackage("incompatible with uClibc") +} + +SRC_URI = "${GNU_MIRROR}/pth/pth-${PV}.tar.gz \ + " SRC_URI[md5sum] = "9cb4a25331a4c4db866a31cbe507c793" SRC_URI[sha256sum] = "72353660c5a2caafd601b20e12e75d865fd88f6cf1a088b306a3963f0bc77232" |