summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/meta')
-rw-r--r--meta/recipes-core/meta/uninative-tarball.bb10
1 files changed, 6 insertions, 4 deletions
diff --git a/meta/recipes-core/meta/uninative-tarball.bb b/meta/recipes-core/meta/uninative-tarball.bb
index 21f3bd9859..ab1015fcfa 100644
--- a/meta/recipes-core/meta/uninative-tarball.bb
+++ b/meta/recipes-core/meta/uninative-tarball.bb
@@ -13,7 +13,7 @@ TOOLCHAIN_HOST_TASK = "\
13 13
14INHIBIT_DEFAULT_DEPS = "1" 14INHIBIT_DEFAULT_DEPS = "1"
15 15
16TOOLCHAIN_OUTPUTNAME ?= "${BUILD_ARCH}-nativesdk-libc" 16TOOLCHAIN_OUTPUTNAME ?= "${SDK_ARCH}-nativesdk-libc"
17 17
18RDEPENDS = "${TOOLCHAIN_HOST_TASK}" 18RDEPENDS = "${TOOLCHAIN_HOST_TASK}"
19 19
@@ -43,9 +43,11 @@ fakeroot create_sdk_files() {
43fakeroot tar_sdk() { 43fakeroot tar_sdk() {
44 mkdir -p ${SDK_DEPLOY} 44 mkdir -p ${SDK_DEPLOY}
45 cd ${SDK_OUTPUT}/${SDKPATH} 45 cd ${SDK_OUTPUT}/${SDKPATH}
46 mv sysroots/${SDK_SYS} ./${BUILD_SYS} 46
47 DEST="./${SDK_ARCH}-${SDK_OS}"
48 mv sysroots/${SDK_SYS} $DEST
47 rm sysroots -rf 49 rm sysroots -rf
48 patchelf --set-interpreter ${@''.join('a' for n in xrange(1024))} ./${BUILD_SYS}/usr/bin/patchelf 50 patchelf --set-interpreter ${@''.join('a' for n in xrange(1024))} $DEST/usr/bin/patchelf
49 mv ./${BUILD_SYS}/usr/bin/patchelf ./${BUILD_SYS}/usr/bin/patchelf-uninative 51 mv $DEST/usr/bin/patchelf $DEST/usr/bin/patchelf-uninative
50 tar ${SDKTAROPTS} -c -j --file=${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.bz2 . 52 tar ${SDKTAROPTS} -c -j --file=${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.bz2 .
51} 53}