diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-06-06 18:33:28 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-11 13:49:52 +0100 |
commit | 2215a9671787af1343299a50c80ed2e0ab1bc0b2 (patch) | |
tree | d8a398d83f35124485f358a5b55d11cd9cc771c9 | |
parent | 429004f6a583a593ef50841eda96f7c72c80d79b (diff) | |
download | poky-2215a9671787af1343299a50c80ed2e0ab1bc0b2.tar.gz |
task-self-hosted.bb,task-core-lsb.bb: Conditionalize pth inclusion
pth is not portable to uclibc therefore we need to exclude it for
uclibc based systems.
(From OE-Core rev: 6482f276533f3a177e07def9d616958d9bbc10c6)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/tasks/task-self-hosted.bb | 4 | ||||
-rw-r--r-- | meta/recipes-extended/tasks/task-core-lsb.bb | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/meta/recipes-core/tasks/task-self-hosted.bb b/meta/recipes-core/tasks/task-self-hosted.bb index 64e01bbc21..61d08ed585 100644 --- a/meta/recipes-core/tasks/task-self-hosted.bb +++ b/meta/recipes-core/tasks/task-self-hosted.bb | |||
@@ -137,7 +137,7 @@ RDEPENDS_task-self-hosted-extended = "\ | |||
137 | perl-dev \ | 137 | perl-dev \ |
138 | perl-modules \ | 138 | perl-modules \ |
139 | perl-pod \ | 139 | perl-pod \ |
140 | pth \ | 140 | ${PTH} \ |
141 | python \ | 141 | python \ |
142 | python-compile \ | 142 | python-compile \ |
143 | python-compiler \ | 143 | python-compiler \ |
@@ -199,3 +199,5 @@ RDEPENDS_task-self-hosted-graphics = "\ | |||
199 | python-pygtk \ | 199 | python-pygtk \ |
200 | gtk-theme-clearlooks \ | 200 | gtk-theme-clearlooks \ |
201 | " | 201 | " |
202 | PTH = "pth" | ||
203 | PTH_libc-uclibc = "" | ||
diff --git a/meta/recipes-extended/tasks/task-core-lsb.bb b/meta/recipes-extended/tasks/task-core-lsb.bb index 4faf4d74e2..553b89e860 100644 --- a/meta/recipes-extended/tasks/task-core-lsb.bb +++ b/meta/recipes-extended/tasks/task-core-lsb.bb | |||
@@ -70,7 +70,7 @@ RDEPENDS_task-core-sys-extended = "\ | |||
70 | minicom \ | 70 | minicom \ |
71 | neon \ | 71 | neon \ |
72 | parted \ | 72 | parted \ |
73 | pth \ | 73 | ${PTH} \ |
74 | quota \ | 74 | quota \ |
75 | screen \ | 75 | screen \ |
76 | setserial \ | 76 | setserial \ |
@@ -197,3 +197,7 @@ RDEPENDS_task-core-lsb-runtime-add = "\ | |||
197 | eglibc-pic \ | 197 | eglibc-pic \ |
198 | eglibc-utils \ | 198 | eglibc-utils \ |
199 | " | 199 | " |
200 | |||
201 | PTH = "pth" | ||
202 | PTH_libc-uclibc = "" | ||
203 | |||