diff options
author | Morgan Little <morgan.little@windriver.com> | 2012-07-19 13:46:06 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-22 11:42:20 +0100 |
commit | 093ed41b0f0d89cb6344acdf6bb62cb9ca597f2f (patch) | |
tree | 56d957638ae1769a111c9bb178cada565d8c9740 /meta/classes/distutils-base.bbclass | |
parent | 5bdd9988d9e64814191fb7480d6a4c1355b019cc (diff) | |
download | poky-093ed41b0f0d89cb6344acdf6bb62cb9ca597f2f.tar.gz |
python-native: Put binaries in seperate directory
Update python-native to install the binaries in the python-native directory,
add pythonnative.bbclass to let recipes that need python-native use the
binaries and update disutils access the new binaries. Update distutils-base
to inherit pythonnative.
(From OE-Core rev: a2e554f731437545e9483a7a73e6847c03f6f48a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/distutils-base.bbclass')
-rw-r--r-- | meta/classes/distutils-base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/distutils-base.bbclass b/meta/classes/distutils-base.bbclass index 6d18e08f14..c761b3602b 100644 --- a/meta/classes/distutils-base.bbclass +++ b/meta/classes/distutils-base.bbclass | |||
@@ -1,5 +1,5 @@ | |||
1 | DEPENDS += "${@["python-native python", ""][(d.getVar('PACKAGES', True) == '')]}" | 1 | DEPENDS += "${@["python-native python", ""][(d.getVar('PACKAGES', True) == '')]}" |
2 | RDEPENDS_${PN} += "${@['', 'python-core']['${PN}' == '${BPN}']}" | 2 | RDEPENDS_${PN} += "${@['', 'python-core']['${PN}' == '${BPN}']}" |
3 | 3 | ||
4 | inherit distutils-common-base | 4 | inherit distutils-common-base pythonnative |
5 | 5 | ||