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/mesa/mesa-common.inc | |
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/mesa/mesa-common.inc')
-rw-r--r-- | meta/packages/mesa/mesa-common.inc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/meta/packages/mesa/mesa-common.inc b/meta/packages/mesa/mesa-common.inc index ebfb920b87..cb112df012 100644 --- a/meta/packages/mesa/mesa-common.inc +++ b/meta/packages/mesa/mesa-common.inc @@ -10,15 +10,11 @@ S = "${WORKDIR}/Mesa-${PV}" PROVIDES = "virtual/libgl" -inherit autotools pkgconfig +inherit autotools_stage pkgconfig EXTRA_OECONF = "--disable-glu \ --disable-glw \ --disable-glut \ --enable-glx-tls" -do_stage() { - autotools_stage_all -} - |