]> code.ossystems Code Review - openembedded-core.git/commitdiff
populate_sdk_deb.bbclass: add the missing parameter - for tar
authorDexuan Cui <dexuan.cui@intel.com>
Tue, 6 Sep 2011 09:12:20 +0000 (17:12 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 7 Sep 2011 21:28:34 +0000 (22:28 +0100)
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
meta/classes/populate_sdk_deb.bbclass

index 1bf1b95498009cc48d11f5e5c8bab6b5d5127efb..40516b856c38aad20cb04e4d9b684947003b9c4d 100644 (file)
@@ -6,7 +6,7 @@ populate_sdk_post_deb () {
 
        local target_rootfs=$1
 
-       tar -cf -C ${STAGING_ETCDIR_NATIVE} -ps apt | tar -xf - -C ${target_rootfs}/etc
+       tar -cf - -C ${STAGING_ETCDIR_NATIVE} -ps apt | tar -xf - -C ${target_rootfs}/etc
 }
 
 fakeroot populate_sdk_deb () {