diff options
author | Holger Freyther <zecke@selfish.org> | 2004-08-07 10:00:10 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2004-08-07 10:00:10 +0000 |
commit | df056f9c1d74ecf3334aec3502b0ee304be350e9 (patch) | |
tree | 6145ced87d54dddd72487af36c27d7b82a6fb3ca | |
parent | 90ed5bd5e74a0dabac1310f3d4043c842975d140 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into debian.(none):/home/ich/programming/oe/oe-packages-exported
2004/08/06 16:39:13+02:00 handhelds.org!zecke
Upstream created a opie2/private include directory, we need to install at least one file to
it. This file is present in opie2/ and opie2/private and we need some discussion how to
handle private header files
BKrev: 4114a82a0ooOpPM29ysazOcu5C21CQ
-rw-r--r-- | libopie/libopie2_cvs.oe | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libopie/libopie2_cvs.oe b/libopie/libopie2_cvs.oe index 8597051bd9..d204515b41 100644 --- a/libopie/libopie2_cvs.oe +++ b/libopie/libopie2_cvs.oe @@ -35,10 +35,12 @@ python __anonymous () { do_compile() { install -d ${STAGING_INCDIR}/opie2 + install -d ${STAGING_INCDIR}/opie2/private for i in `find . -name "*.h"` do install -m 0644 $i ${STAGING_INCDIR}/opie2/`basename $i` done + install -m 0644 opiepim/private/vobject_p.h ${STAGING_INCDIR}/opie2/private/ oe_runmake MOC=${STAGING_BINDIR}/moc UIC=${STAGING_BINDIR}/uic DESTDIR=${S} } |