diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2008-12-27 01:13:47 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-12-30 17:07:17 +0000 |
commit | fcb1791f553081e5267c2d0b7795eab224b4a342 (patch) | |
tree | 16772e322df1059b1f13585396c683e50eafc3c3 /meta/packages/libvorbis | |
parent | e380b48602db316c7d12d328192eadc52e5be861 (diff) | |
download | openembedded-core-fcb1791f553081e5267c2d0b7795eab224b4a342.tar.gz openembedded-core-fcb1791f553081e5267c2d0b7795eab224b4a342.tar.bz2 openembedded-core-fcb1791f553081e5267c2d0b7795eab224b4a342.zip |
classes/autotools_stage.bbclass: Add autotools_stage class to further recipes to simplify recipes using standard autotools
Diffstat (limited to 'meta/packages/libvorbis')
-rw-r--r-- | meta/packages/libvorbis/libvorbis_1.0.1.bb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/meta/packages/libvorbis/libvorbis_1.0.1.bb b/meta/packages/libvorbis/libvorbis_1.0.1.bb index 6dd677a830..4dfd389831 100644 --- a/meta/packages/libvorbis/libvorbis_1.0.1.bb +++ b/meta/packages/libvorbis/libvorbis_1.0.1.bb @@ -9,7 +9,7 @@ PR = "r5" SRC_URI = "http://www.vorbis.com/files/${PV}/unix/libvorbis-${PV}.tar.gz \ file://m4.patch;patch=1" -inherit autotools pkgconfig +inherit autotools_stage pkgconfig # vorbisfile.c reveals a problem in the gcc register spilling for the # thumb instruction set... @@ -17,7 +17,3 @@ FULL_OPTIMIZATION_thumb = "-O0" EXTRA_OECONF = "--with-ogg-libraries=${STAGING_LIBDIR} \ --with-ogg-includes=${STAGING_INCDIR}" - -do_stage () { - autotools_stage_all -} |