diff options
author | Rene Wagner <rw@handhelds.org> | 2005-08-03 19:48:43 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-03 19:48:43 +0000 |
commit | 92917970baea2b818611e3a7e8fffc9d27acb2b1 (patch) | |
tree | d021b9276ff515ac3b7c6b16a6ab4aa4317088d9 /classes | |
parent | 8a4adf77cb17f20506911ff94e7683936a7f575c (diff) |
sourcepkg.bbclass: fix handling of EXCLUDE_FROM. thanks to koen for spotting.
Diffstat (limited to 'classes')
-rw-r--r-- | classes/sourcepkg.bbclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/classes/sourcepkg.bbclass b/classes/sourcepkg.bbclass index dd9a1e2e25..ee022c99d2 100644 --- a/classes/sourcepkg.bbclass +++ b/classes/sourcepkg.bbclass @@ -35,7 +35,7 @@ sourcepkg_do_create_orig_tgz(){ mkdir -p ${DEPLOY_DIR_SRC} cd ${WORKDIR} for i in ${EXCLUDE_FROM}; do - echo $i > temp/exclude-from-file + echo $i >> temp/exclude-from-file done src_tree=${@get_src_tree(d)} @@ -85,6 +85,10 @@ python sourcepkg_do_dumpdata() { sourcepkg_do_create_diff_gz(){ cd ${WORKDIR} + for i in ${EXCLUDE_FROM}; do + echo $i >> temp/exclude-from-file + done + src_tree=${@get_src_tree(d)} |