diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2016-12-30 10:28:40 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-01-10 13:12:56 +0100 |
commit | 3ad0b30fea32a9a66f942c8e6afd82f736e95c62 (patch) | |
tree | 3cb126ff3ffeda2477db730669e65ed7b8eeaf58 | |
parent | 75da410e4ec734930ff024041ac9f56cee9f7b8d (diff) | |
download | meta-openembedded-contrib-3ad0b30fea32a9a66f942c8e6afd82f736e95c62.tar.gz |
python-vcversioner: empty the RDEPENDS for native
The RDEPENDS for native package is not needed,
and it will fail since there is no provider for
python-subprocess-native:
| ERROR: Nothing RPROVIDES 'python-subprocess-native'
so empty the RDEPENDS for native package.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python-vcversioner_2.16.0.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-vcversioner_2.16.0.0.bb b/meta-python/recipes-devtools/python/python-vcversioner_2.16.0.0.bb index f4a6009f871..cd6fa8dff6f 100644 --- a/meta-python/recipes-devtools/python/python-vcversioner_2.16.0.0.bb +++ b/meta-python/recipes-devtools/python/python-vcversioner_2.16.0.0.bb @@ -20,5 +20,6 @@ do_install_append() { RDEPENDS_${PN} += "\ ${PYTHON_PN}-subprocess \ " +RDEPENDS_${PN}_class-native = "" BBCLASSEXTEND = "native" |