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/libsdl | |
parent | e380b48602db316c7d12d328192eadc52e5be861 (diff) | |
download | poky-fcb1791f553081e5267c2d0b7795eab224b4a342.tar.gz |
classes/autotools_stage.bbclass: Add autotools_stage class to further recipes to simplify recipes using standard autotools
Diffstat (limited to 'meta/packages/libsdl')
-rw-r--r-- | meta/packages/libsdl/libsdl-sdk_1.2.11.bb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/packages/libsdl/libsdl-sdk_1.2.11.bb b/meta/packages/libsdl/libsdl-sdk_1.2.11.bb index fb19248a69..6cea742f17 100644 --- a/meta/packages/libsdl/libsdl-sdk_1.2.11.bb +++ b/meta/packages/libsdl/libsdl-sdk_1.2.11.bb | |||
@@ -12,7 +12,7 @@ SRC_URI = "http://www.libsdl.org/release/SDL-${PV}.tar.gz \ | |||
12 | file://kernel-asm-page.patch;patch=1 " | 12 | file://kernel-asm-page.patch;patch=1 " |
13 | S = "${WORKDIR}/SDL-${PV}" | 13 | S = "${WORKDIR}/SDL-${PV}" |
14 | 14 | ||
15 | inherit autotools binconfig pkgconfig sdk | 15 | inherit autotools_stage binconfig pkgconfig sdk |
16 | 16 | ||
17 | EXTRA_OECONF = "--disable-static --disable-debug --disable-cdrom --enable-threads --enable-timers --enable-endian \ | 17 | EXTRA_OECONF = "--disable-static --disable-debug --disable-cdrom --enable-threads --enable-timers --enable-endian \ |
18 | --enable-file --disable-oss --disable-alsa --disable-esd --disable-arts \ | 18 | --enable-file --disable-oss --disable-alsa --disable-esd --disable-arts \ |
@@ -30,7 +30,6 @@ do_configure_prepend() { | |||
30 | cp ${WORKDIR}/acinclude.m4 ${S}/acinclude.m4 | 30 | cp ${WORKDIR}/acinclude.m4 ${S}/acinclude.m4 |
31 | } | 31 | } |
32 | 32 | ||
33 | do_stage() { | 33 | do_stage_append() { |
34 | autotools_stage_all | ||
35 | install -m 0644 ${S}/build/libSDLmain.a ${STAGING_LIBDIR} | 34 | install -m 0644 ${S}/build/libSDLmain.a ${STAGING_LIBDIR} |
36 | } | 35 | } |