diff options
author | Yao Zhao <yao.zhao@windriver.com> | 2012-07-26 16:34:19 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-27 14:07:23 +0100 |
commit | 5bf3541836457465aa76577bfb41cdf6316213c9 (patch) | |
tree | d74dda705151578019ed7e2afa194adf0d49d302 /meta/recipes-devtools/python | |
parent | cc1f824778c023686b4ea75c64a182a138ff2267 (diff) | |
download | openembedded-core-5bf3541836457465aa76577bfb41cdf6316213c9.tar.gz openembedded-core-5bf3541836457465aa76577bfb41cdf6316213c9.tar.bz2 openembedded-core-5bf3541836457465aa76577bfb41cdf6316213c9.zip |
bzip2-native: handling native path issue
follow Richard's approach, modify bzip2-native recipe to install bzip2 package
binaries to STAGING_BINDIR_NATIVE/bzip2-native to avoid problems when other
package is doing upack to reference bzip2. libbz2.so* still installs to
STAGING_LIBDIR_NATIVE.
change python-native to depends on bzip2-replacement-native instead of
bzip2-full-native and add EXTRANATIVEPATH for bzip2-native.
Didn't add bzip2native.bbclass as python-native is the only user so far.
Signed-off-by: Yao Zhao <yao.zhao@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python-native_2.7.3.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python-native_2.7.3.bb b/meta/recipes-devtools/python/python-native_2.7.3.bb index c89f9f9367..d450949326 100644 --- a/meta/recipes-devtools/python/python-native_2.7.3.bb +++ b/meta/recipes-devtools/python/python-native_2.7.3.bb @@ -1,5 +1,7 @@ require python.inc -DEPENDS = "openssl-native bzip2-full-native zlib-native readline-native sqlite3-native" + +EXTRANATIVEPATH += "bzip2-native" +DEPENDS = "openssl-native bzip2-replacement-native zlib-native readline-native sqlite3-native" PR = "${INC_PR}.1" SRC_URI += "file://04-default-is-optimized.patch \ |