diff options
author | Kang Kai <kai.kang@windriver.com> | 2013-01-22 19:30:22 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-22 15:38:08 +0000 |
commit | 0a0e03992cfd5d4e28e638c57b33069c1e2e4cd2 (patch) | |
tree | 7635dba0df355c967a904f7e23695482e2284ffb | |
parent | ad1af9dc8b47a840dbd8cd4ec5982335c981e993 (diff) | |
download | poky-0a0e03992cfd5d4e28e638c57b33069c1e2e4cd2.tar.gz |
createrepo-native: update dependency
"RDEPENDS_${PN}_class-native" doesn't work for native recipe because no
-native package will be created. Then the dependencies listed here are
not built when bitbake createrepo-native.
Update and use DEPENDS_class-native instead.
(From OE-Core rev: 0b8dc781e4df0edffa10ac989f8745ac3f684de0)
Signed-off-by: Kang Kai <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/createrepo/createrepo_0.4.11.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/createrepo/createrepo_0.4.11.bb b/meta/recipes-support/createrepo/createrepo_0.4.11.bb index 227ebcb491..c977c2e6e8 100644 --- a/meta/recipes-support/createrepo/createrepo_0.4.11.bb +++ b/meta/recipes-support/createrepo/createrepo_0.4.11.bb | |||
@@ -4,9 +4,9 @@ HOMEPAGE = "http://createrepo.baseurl.org/" | |||
4 | LICENSE = "GPLv2+" | 4 | LICENSE = "GPLv2+" |
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" |
6 | 6 | ||
7 | RDEPENDS_${PN}_class-native += "libxml2-native rpm-native" | 7 | DEPENDS_class-native += "libxml2-native rpm-native" |
8 | 8 | ||
9 | PR = "r8" | 9 | PR = "r9" |
10 | 10 | ||
11 | SRC_URI= "http://createrepo.baseurl.org/download/${BP}.tar.gz \ | 11 | SRC_URI= "http://createrepo.baseurl.org/download/${BP}.tar.gz \ |
12 | file://fix-native-install.patch \ | 12 | file://fix-native-install.patch \ |