diff options
author | Rene Wagner <rw@handhelds.org> | 2006-01-05 20:09:10 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-05 20:09:10 +0000 |
commit | 8a1ffee9bc64ecf4be814f36635dba6514e51a79 (patch) | |
tree | 2c9d0b28abcf9c5a506298a92946e4b878285f7e /packages | |
parent | 2854e0eeacbb91f68b3740a6227a3d93911a2fb0 (diff) |
libogg: revert deletion of do_stage() applied in c6358e3932bd89f868ce958c308bc34cc870e25c
Diffstat (limited to 'packages')
-rw-r--r-- | packages/libogg/libogg_1.1.bb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/libogg/libogg_1.1.bb b/packages/libogg/libogg_1.1.bb index 8ca54593d9..687b4decec 100644 --- a/packages/libogg/libogg_1.1.bb +++ b/packages/libogg/libogg_1.1.bb @@ -3,7 +3,7 @@ DESCRIPTION = "libogg is the bitstream and framing library \ for the Ogg project. It provides functions which are \ necessary to codec libraries like libvorbis." LICENSE = "BSD" -PR = "r2" +PR = "r3" SRC_URI = "http://www.vorbis.com/files/1.0.1/unix/libogg-${PV}.tar.gz \ file://m4.patch;patch=1" @@ -11,5 +11,9 @@ file://m4.patch;patch=1" inherit autotools pkgconfig do_stage () { - autotools_stage_all + oe_libinstall -a -so -C src libogg ${STAGING_LIBDIR} + + install -d ${STAGING_INCDIR}/ogg + (cd ${S}/include/ogg; cp config_types.h ogg.h os_types.h ${STAGING_INCDIR}/ogg/) + install -m 0644 ${S}/ogg.m4 ${STAGING_DATADIR}/aclocal/ } |