diff options
author | Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> | 2018-06-24 03:52:58 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-27 13:55:21 +0100 |
commit | bca21299ab0e47d5bab037b9969fe7e3ffb847d7 (patch) | |
tree | 9999fc7f271e0e917cbcbafd5f668285f31062dd /meta/recipes-devtools/createrepo-c | |
parent | c8a038a3e6c40881b805f985de4ea249686582d9 (diff) | |
download | poky-bca21299ab0e47d5bab037b9969fe7e3ffb847d7.tar.gz |
createrepo-c: Add nativesdk
Add nativesdk for createrepo-c.
(From OE-Core rev: 802c4029f90cee3027b6bc62c5201e8b29f02557)
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/createrepo-c')
-rw-r--r-- | meta/recipes-devtools/createrepo-c/createrepo-c_git.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-devtools/createrepo-c/createrepo-c_git.bb b/meta/recipes-devtools/createrepo-c/createrepo-c_git.bb index 31761368b7..9be9f9e51a 100644 --- a/meta/recipes-devtools/createrepo-c/createrepo-c_git.bb +++ b/meta/recipes-devtools/createrepo-c/createrepo-c_git.bb | |||
@@ -21,7 +21,7 @@ inherit cmake pkgconfig bash-completion distutils3-base | |||
21 | 21 | ||
22 | EXTRA_OECMAKE = " -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DPYTHON_DESIRED=3" | 22 | EXTRA_OECMAKE = " -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DPYTHON_DESIRED=3" |
23 | 23 | ||
24 | BBCLASSEXTEND = "native" | 24 | BBCLASSEXTEND = "native nativesdk" |
25 | 25 | ||
26 | # Direct createrepo to read rpm configuration from our sysroot, not the one it was compiled in | 26 | # Direct createrepo to read rpm configuration from our sysroot, not the one it was compiled in |
27 | do_install_append_class-native() { | 27 | do_install_append_class-native() { |
@@ -29,3 +29,8 @@ do_install_append_class-native() { | |||
29 | RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm | 29 | RPM_CONFIGDIR=${STAGING_LIBDIR_NATIVE}/rpm |
30 | } | 30 | } |
31 | 31 | ||
32 | do_install_append_class-nativesdk() { | ||
33 | create_wrapper ${D}/${bindir}/createrepo_c \ | ||
34 | RPM_CONFIGDIR=${SDKPATHNATIVE}${libdir_nativesdk}/rpm | ||
35 | rm -rf ${D}/etc | ||
36 | } | ||