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:36:02 +0000 |
commit | 0b8dc781e4df0edffa10ac989f8745ac3f684de0 (patch) | |
tree | 3b134083f76572d982bb5df38b89cab5873ee779 /meta/recipes-support | |
parent | 1a31918733a7f8479220c01fc99dd9099fdcaf9b (diff) | |
download | openembedded-core-0b8dc781e4df0edffa10ac989f8745ac3f684de0.tar.gz openembedded-core-0b8dc781e4df0edffa10ac989f8745ac3f684de0.tar.bz2 openembedded-core-0b8dc781e4df0edffa10ac989f8745ac3f684de0.zip |
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.
Signed-off-by: Kang Kai <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-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/" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" -RDEPENDS_${PN}_class-native += "libxml2-native rpm-native" +DEPENDS_class-native += "libxml2-native rpm-native" -PR = "r8" +PR = "r9" SRC_URI= "http://createrepo.baseurl.org/download/${BP}.tar.gz \ file://fix-native-install.patch \ |