diff options
author | Holger Freyther <zecke@selfish.org> | 2005-07-08 18:09:34 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-08 18:09:34 +0000 |
commit | 6c709f5f01e190dc3d05777de12f2eaa90d20485 (patch) | |
tree | e0bab418f153166415f6b490e7278a57f9909093 | |
parent | 0fd2c307d607b81b5e08ae3468e95ad662148df9 (diff) |
libopie2.inc:
-Change the way we install headers into staging. Do not use find directly
but look for headers in each known module.
Imagine someones patches libopie and you have .pc or patches/ directory
now someone even patches a header file and due bad luck the header from
.pc/patches got staged instead of the patched...
This can not happen anymore!
-rw-r--r-- | packages/libopie/libopie2.inc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/packages/libopie/libopie2.inc b/packages/libopie/libopie2.inc index 1ee7900fb8..75648b3c79 100644 --- a/packages/libopie/libopie2.inc +++ b/packages/libopie/libopie2.inc @@ -32,10 +32,15 @@ python __anonymous () { do_compile() { install -d ${STAGING_INCDIR}/opie2 install -d ${STAGING_INCDIR}/opie2/private - for i in `find . -name "*.h"` - do + for module in opiecore opiedb opiemm opienet opiepim opiesecurity opieui + do + cd $module + for i in `find . -name "*.h"` + do install -m 0644 $i ${STAGING_INCDIR}/opie2/`basename $i` - done + done + cd .. + done for i in opimcontactsortvector.h opimoccurrence_p.h opimsortvector.h opimtodosortvector.h vobject_p.h opimeventsortvector.h do |