diff options
author | Chase Maupin <chasemaupin03@gmail.com> | 2010-07-28 04:06:18 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-07-28 16:30:04 +0200 |
commit | 07c1f7bb1131fdc9b17d842e59161d96b3f60630 (patch) | |
tree | 00d4e7a5b0f4baa88aeb5f2e5e71dceec9be81bc /classes/sourceipk.bbclass | |
parent | 1150363c163968c79eb85b3552927f1ab562db6c (diff) |
sourceipk: use ar to package ipk instead of tar
* Changed the command that packages the contents of the
source ipk to ar instead of tar to match how other ipks
are built.
Signed-off-by: Chase Maupin <chase.maupin@ti.com>
Signed-off-by: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'classes/sourceipk.bbclass')
-rw-r--r-- | classes/sourceipk.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/sourceipk.bbclass b/classes/sourceipk.bbclass index 9acd9a5427..4957e4af4c 100644 --- a/classes/sourceipk.bbclass +++ b/classes/sourceipk.bbclass @@ -114,7 +114,7 @@ sourceipk_do_create_srcipk() { mkdir -p ${DEPLOY_DIR_IPK}/${SRCIPK_PACKAGE_ARCH} pkg_file=${DEPLOY_DIR_IPK}/${SRCIPK_PACKAGE_ARCH}/${PN}-src_${PV}-${PR}_${SRCIPK_PACKAGE_ARCH}.ipk rm -f $pkg_file - tar -C $srcipk_dir -czf $pkg_file . + ( cd $srcipk_dir && ar -crf $pkg_file ./debian-binary ./data.tar.gz ./control.tar.gz ) # Remove the temporary directory rm -rf $tmp_dir |