From: Noor Ahsan Date: Mon, 6 Sep 2010 02:19:00 +0000 (+0000) Subject: libsdl-native: Convert to new style staging, remove do_stage X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c8fbc364a52d64731cbc092c7b97bd54a9098d4;p=openembedded.git libsdl-native: Convert to new style staging, remove do_stage * Remove do_stage () * Replace tabs with 8 spaces in do_configure * Bump INC_PR = "r3" Signed-off-by: Noor Ahsan Signed-off-by: Khem Raj --- diff --git a/recipes/libsdl/libsdl-native.inc b/recipes/libsdl/libsdl-native.inc index 783797a6eb..faae90c729 100644 --- a/recipes/libsdl/libsdl-native.inc +++ b/recipes/libsdl/libsdl-native.inc @@ -2,7 +2,7 @@ DESCRIPTION = "Simple DirectMedia Layer - native Edition" HOMEPAGE = "http://www.libsdl.org" SECTION = "libs" LICENSE = "LGPL" -INC_PR = "r2" +INC_PR = "r3" SRC_URI = "http://www.libsdl.org/release/SDL-${PV}.tar.gz \ " @@ -23,15 +23,11 @@ EXTRA_OECONF = "--disable-debug --disable-cdrom --enable-threads --enable-timers --disable-video-picogui --disable-video-qtopia --enable-dlopen" do_configure() { - gnu-configize - oe_runconf - cd ${S} - # prevent libtool from linking libs against libstdc++, libgcc, ... - cat ${TARGET_PREFIX}libtool | sed -e 's/postdeps=".*"/postdeps=""/' > ${TARGET_PREFIX}libtool.tmp - mv ${TARGET_PREFIX}libtool.tmp ${TARGET_PREFIX}libtool + gnu-configize + oe_runconf + cd ${S} + # prevent libtool from linking libs against libstdc++, libgcc, ... + cat ${TARGET_PREFIX}libtool | sed -e 's/postdeps=".*"/postdeps=""/' > ${TARGET_PREFIX}libtool.tmp + mv ${TARGET_PREFIX}libtool.tmp ${TARGET_PREFIX}libtool } -do_stage() { - autotools_stage_all - install -m 0644 build/libSDLmain.a ${STAGING_LIBDIR} -}