diff options
author | Koen Kooi <koen@openembedded.org> | 2010-03-17 10:03:18 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-03-17 10:03:18 +0100 |
commit | 5a70033fdb4ff5370a5d2c5731a0e229497b8081 (patch) | |
tree | fdb9d27774307b2efce502011b5e880f2e3975c9 /classes/sourcepkg.bbclass | |
parent | 7779f2044aff04754fabb2f2c18fdc8485ff61cf (diff) |
sourcepkg: save lots of space by only making the diff arch specific
Diffstat (limited to 'classes/sourcepkg.bbclass')
-rw-r--r-- | classes/sourcepkg.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
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 } |