From: Randy Witt Date: Mon, 23 Feb 2015 17:00:41 +0000 (+0000) Subject: uninative-tarball: Actually use bzip2 for compression. X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~31125 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84665b4e894a949591d812f1cdc1745a376bf95f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git uninative-tarball: Actually use bzip2 for compression. uninative.bbclass uses -xjf for decompression so actually run the data through bzip2. Signed-off-by: Randy Witt Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/meta/uninative-tarball.bb b/meta/recipes-core/meta/uninative-tarball.bb index e17685a1171..53435f22ae1 100644 --- a/meta/recipes-core/meta/uninative-tarball.bb +++ b/meta/recipes-core/meta/uninative-tarball.bb @@ -44,5 +44,5 @@ fakeroot tar_sdk() { rm sysroots -rf patchelf --set-interpreter ${@''.join('a' for n in xrange(1024))} ./${BUILD_SYS}/usr/bin/patchelf mv ./${BUILD_SYS}/usr/bin/patchelf ./${BUILD_SYS}/usr/bin/patchelf-uninative - tar ${SDKTAROPTS} -c --file=${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.bz2 . + tar ${SDKTAROPTS} -c -j --file=${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.bz2 . }