diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-11 23:01:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-14 16:55:21 +0100 |
commit | d3846f06d1e3faedcbc3c28e22c427bb0088683d (patch) | |
tree | c3ed2697085cc06dce01b3ddee017645155659e6 /meta/classes/populate_sdk_deb.bbclass | |
parent | faf8f8660fae26a14578738b642fdeb08bcb9d54 (diff) | |
download | poky-d3846f06d1e3faedcbc3c28e22c427bb0088683d.tar.gz |
classes: tar 1.27 fixes
tar version 1.27 returns:
tar: --same-order option cannot be used with -c
with the commandlines we have been using. We can remove the -s option (which
is --same-order) to remove the error.
(From OE-Core rev: 3d5a6d0a480a0fa98260a3b3ffc71b8d9e3e58af)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_deb.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_deb.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_deb.bbclass b/meta/classes/populate_sdk_deb.bbclass index ec116ab187..ebb842ba86 100644 --- a/meta/classes/populate_sdk_deb.bbclass +++ b/meta/classes/populate_sdk_deb.bbclass | |||
@@ -13,7 +13,7 @@ populate_sdk_post_deb () { | |||
13 | local target_rootfs=$1 | 13 | local target_rootfs=$1 |
14 | 14 | ||
15 | mkdir -p ${target_rootfs}/etc | 15 | mkdir -p ${target_rootfs}/etc |
16 | tar -cf - -C ${STAGING_ETCDIR_NATIVE} -ps apt | tar -xf - -C ${target_rootfs}/etc | 16 | tar -cf - -C ${STAGING_ETCDIR_NATIVE} -p apt | tar -xf - -C ${target_rootfs}/etc |
17 | } | 17 | } |
18 | 18 | ||
19 | populate_sdk_deb () { | 19 | populate_sdk_deb () { |