diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-01-03 12:30:36 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-01-03 12:30:36 +0000 |
commit | 4601ad28765bf7ef207974f9ad7fc209d3745088 (patch) | |
tree | 7606ec3468f5377ea19776cf43227427582ce410 /packages/libexif/libexif_0.6.13.bb | |
parent | d9a54a4705d13b90f074817368059cb8b0f20f20 (diff) | |
parent | ef937c49f30fa5b7c6656c7f9814cb1fb161e070 (diff) |
merge of '2f655855e9cd21f0db11577a04d65162273a4b1c'
and '7754c88af17176a35aedbbe47eeab2d9d5d7774b'
Diffstat (limited to 'packages/libexif/libexif_0.6.13.bb')
-rw-r--r-- | packages/libexif/libexif_0.6.13.bb | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/packages/libexif/libexif_0.6.13.bb b/packages/libexif/libexif_0.6.13.bb index e8b8c65953..40888df6c3 100644 --- a/packages/libexif/libexif_0.6.13.bb +++ b/packages/libexif/libexif_0.6.13.bb @@ -8,12 +8,10 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/libexif/libexif-${PV}.tar.bz2" inherit autotools pkgconfig -do_stage() { - oe_libinstall -a -so -C libexif libexif ${STAGING_LIBDIR} +do_configure_append() { + sed -i s:doc\ binary:binary:g Makefile +} - install -d ${STAGING_INCDIR}/libexif - for X in exif-byte-order.h exif-data.h exif-format.h exif-loader.h exif-tag.h exif-content.h exif-entry.h exif-ifd.h exif-utils.h exif-log.h exif-mnote-data.h _stdint.h exif-data-type.h exif-mem.h - do - install -m 0644 ${S}/libexif/$X ${STAGING_INCDIR}/libexif/$X - done +do_stage() { + autotools_stage_all } |