diff options
author | Ross Burton <ross.burton@intel.com> | 2016-01-25 15:07:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-26 22:31:58 +0000 |
commit | 99958140a2d73cd580c711ce74070d9d42ffe2fb (patch) | |
tree | c25415cb8fc459d41ecb15171183b1513e8296c3 | |
parent | 2495dfafaded6d60bc7032a15aa7beb90c62597d (diff) | |
download | poky-99958140a2d73cd580c711ce74070d9d42ffe2fb.tar.gz |
uninative: fix path to patchelf-uninative
When uninative was changed to use it's own sysroot the path to patchelf lost
${bindir_native}, so add it back.
(From OE-Core rev: d986f90937b7b4c60128003ef5d30d01ac1653e3)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/uninative.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/uninative.bbclass b/meta/classes/uninative.bbclass index 8686159e84..3383e01cda 100644 --- a/meta/classes/uninative.bbclass +++ b/meta/classes/uninative.bbclass | |||
@@ -42,7 +42,7 @@ python uninative_eventhandler() { | |||
42 | except Exception as exc: | 42 | except Exception as exc: |
43 | bb.fatal("Unable to download uninative tarball: %s" % str(exc)) | 43 | bb.fatal("Unable to download uninative tarball: %s" % str(exc)) |
44 | 44 | ||
45 | cmd = e.data.expand("mkdir -p ${STAGING_DIR}-uninative; cd ${STAGING_DIR}-uninative; tar -xjf ${UNINATIVE_DLDIR}/${UNINATIVE_TARBALL}; ${STAGING_DIR}-uninative/relocate_sdk.py ${STAGING_DIR}-uninative/${BUILD_ARCH}-linux ${UNINATIVE_LOADER} ${UNINATIVE_LOADER} ${STAGING_DIR}-uninative/${BUILD_ARCH}-linux/patchelf-uninative") | 45 | cmd = e.data.expand("mkdir -p ${STAGING_DIR}-uninative; cd ${STAGING_DIR}-uninative; tar -xjf ${UNINATIVE_DLDIR}/${UNINATIVE_TARBALL}; ${STAGING_DIR}-uninative/relocate_sdk.py ${STAGING_DIR}-uninative/${BUILD_ARCH}-linux ${UNINATIVE_LOADER} ${UNINATIVE_LOADER} ${STAGING_DIR}-uninative/${BUILD_ARCH}-linux/${bindir_native}/patchelf-uninative") |
46 | try: | 46 | try: |
47 | subprocess.check_call(cmd, shell=True) | 47 | subprocess.check_call(cmd, shell=True) |
48 | except subprocess.CalledProcessError as exc: | 48 | except subprocess.CalledProcessError as exc: |