From: Koen Kooi Date: Wed, 17 Mar 2010 09:03:18 +0000 (+0100) Subject: sourcepkg: save lots of space by only making the diff arch specific X-Git-Tag: Release-2010-05/1~340^2~71 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a70033fdb4ff5370a5d2c5731a0e229497b8081;p=openembedded.git sourcepkg: save lots of space by only making the diff arch specific --- diff --git a/classes/sourcepkg.bbclass b/classes/sourcepkg.bbclass index 7e73680f33..ce57ef0e0b 100644 --- a/classes/sourcepkg.bbclass +++ b/classes/sourcepkg.bbclass @@ -39,8 +39,8 @@ sourcepkg_do_create_orig_tgz(){ src_tree=$(basename ${S}) echo $src_tree - oenote "Creating .orig.tar.gz in ${DEPLOY_DIR_SRC}/${PN}/${PACKAGE_ARCH}/${P}.orig.tar.gz" - tar cvzf ${DEPLOY_DIR_SRC}/${PN}/${PACKAGE_ARCH}/${P}.orig.tar.gz --exclude-from temp/exclude-from-file $src_tree + oenote "Creating .orig.tar.gz in ${DEPLOY_DIR_SRC}/${PN}/${P}.orig.tar.gz" + tar cvzf ${DEPLOY_DIR_SRC}/${PN}/${P}.orig.tar.gz --exclude-from temp/exclude-from-file $src_tree cp -pPR $src_tree $src_tree.orig }