diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-03-13 11:32:43 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-03-13 11:32:43 +0000 |
commit | 5c42bdea2f4fe830285b82ab63d6dc5a9dc898b4 (patch) | |
tree | 954482cb36068d6b8c57230ed24160d4a0b8be77 /fam | |
parent | 113e9f87ad0dcb2a5c7d71cadfdba93fe2ef92e3 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages
2004/03/13 12:29:43+01:00 uni-frankfurt.de!mickey
finally found the cause for
'error: void expression between ( and )'
it came from fam installing a bogus Boolean.h into STAGING_INCDIR
hence overwriting a 'good one'.
Seems we really should implement split staging asap
BKrev: 4052f15b9sNxffA2zgf_ZBp2dBeZ6w
Diffstat (limited to 'fam')
-rw-r--r-- | fam/fam_2.6.10.oe | 2 | ||||
-rw-r--r-- | fam/fam_2.7.0.oe | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fam/fam_2.6.10.oe b/fam/fam_2.6.10.oe index b2309b77d8..7ae0ea4860 100644 --- a/fam/fam_2.6.10.oe +++ b/fam/fam_2.6.10.oe @@ -15,6 +15,6 @@ do_stage() { oe_soinstall libfam/.libs/libfam.so.0.0.0 ${STAGING_LIBDIR}/ install -m 0644 libfam/.libs/libfam.a ${STAGING_LIBDIR}/libfam.a install -m 0644 libfam/.libs/libfam.lai ${STAGING_LIBDIR}/libfam.la - install -m 0644 include/* ${STAGING_INCDIR}/ + install -m 0644 include/fam.h ${STAGING_INCDIR}/ } diff --git a/fam/fam_2.7.0.oe b/fam/fam_2.7.0.oe index dec9c70842..1c769d484c 100644 --- a/fam/fam_2.7.0.oe +++ b/fam/fam_2.7.0.oe @@ -15,6 +15,6 @@ do_stage() { oe_soinstall libfam/.libs/libfam.so.0.0.0 ${STAGING_LIBDIR}/ install -m 0644 libfam/.libs/libfam.a ${STAGING_LIBDIR}/libfam.a install -m 0644 libfam/.libs/libfam.lai ${STAGING_LIBDIR}/libfam.la - install -m 0644 include/* ${STAGING_INCDIR}/ + install -m 0644 include/fam.h ${STAGING_INCDIR}/ } |