]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake: compile tar-replacement firstly
authorRoy.Li <rongqing.li@windriver.com>
Wed, 8 Aug 2012 01:44:26 +0000 (09:44 +0800)
committerSaul Wold <sgw@linux.intel.com>
Tue, 28 Aug 2012 15:03:39 +0000 (08:03 -0700)
Compiling tar-replacement or not is decided by version of host tar,
if the host tar version is lower than 1.23, Compiling tar-replacement
is needed.

When doing popoluate tar-replacement sysroot to write the tar to
sysroot, but writing is not finished. other packages probably
use the being written tar to unzip file, which will lead to failure
and report the below error:
"bitbake_build/tmp/sysroots/x86_64-linux/usr/bin/tar: Text file busy"

Now we compile tar-replacement firstly to ensure that a being written
tar command will not be used.

Signed-off-by: Roy.Li <rongqing.li@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
scripts/bitbake

index 09f8a86240a26062635deb470a233810b2d01f21..79a81eaf0faaf580ad40e7dfa36b1920c791e6b0 100755 (executable)
@@ -152,7 +152,12 @@ if [ $buildpseudo -gt 0 ]; then
             fi
         done
     done
-    bitbake pseudo-native $TARTARGET $GITTARGET $additionalopts -c populate_sysroot
+
+    if [ $needtar = "1" ]; then
+       bitbake $TARTARGET -c populate_sysroot
+    fi
+
+    bitbake pseudo-native $GITTARGET $additionalopts -c populate_sysroot
     ret=$?
     if [ "$ret" != "0" ]; then
         exit 1