diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-26 12:23:10 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-26 12:23:10 +0000 |
commit | 8ae1f88214acf8f44073f2e499bef59e9433fdfd (patch) | |
tree | 172f6f5e5fec3d5f1402383dcef5e00b53a5672a /meta/recipes-core | |
parent | 5f866ac84f72699139be1d98f010017c7b71f0f7 (diff) | |
download | poky-8ae1f88214acf8f44073f2e499bef59e9433fdfd.tar.gz |
meta-toolchain: Fix tar command
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/meta-toolchain.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/meta/meta-toolchain.bb b/meta/recipes-core/meta/meta-toolchain.bb index 2de2ae5c98..4aed9c276e 100644 --- a/meta/recipes-core/meta/meta-toolchain.bb +++ b/meta/recipes-core/meta/meta-toolchain.bb | |||
@@ -98,7 +98,7 @@ do_populate_sdk() { | |||
98 | # Package it up | 98 | # Package it up |
99 | mkdir -p ${SDK_DEPLOY} | 99 | mkdir -p ${SDK_DEPLOY} |
100 | cd ${SDK_OUTPUT} | 100 | cd ${SDK_OUTPUT} |
101 | tar --owner=root --group=root cjf ${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.bz2 . | 101 | tar --owner=root --group=root -cj --file=${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.bz2 . |
102 | } | 102 | } |
103 | 103 | ||
104 | do_populate_sdk[nostamp] = "1" | 104 | do_populate_sdk[nostamp] = "1" |