diff options
author | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-07-24 13:37:44 +0000 |
---|---|---|
committer | Henning Heinold <heinold@inf.fu-berlin.de> | 2008-07-24 13:37:44 +0000 |
commit | 6486d71d56e0f71c601d3f7cfdd8455108715dc1 (patch) | |
tree | 9d194e4a8cfc0001f41c7f4778bedcce4910d70a /packages/libsdl/libsdl-net_1.2.7.bb | |
parent | c053a525974d48a5a2ede5399d465733728c8008 (diff) |
libsdl-net: fix building with libtool2
Diffstat (limited to 'packages/libsdl/libsdl-net_1.2.7.bb')
-rw-r--r-- | packages/libsdl/libsdl-net_1.2.7.bb | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/packages/libsdl/libsdl-net_1.2.7.bb b/packages/libsdl/libsdl-net_1.2.7.bb index 8149cce379..8cbea5bd01 100644 --- a/packages/libsdl/libsdl-net_1.2.7.bb +++ b/packages/libsdl/libsdl-net_1.2.7.bb @@ -3,16 +3,19 @@ SECTION = "libs/network" PRIORITY = "optional" DEPENDS = "virtual/libsdl" LICENSE = "LGPL" +PR = "r1" + +SRC_URI = "http://www.libsdl.org/projects/SDL_net/release/SDL_net-${PV}.tar.gz \ + file://libtool2.patch;patch=1 \ + " -SRC_URI = "http://www.libsdl.org/projects/SDL_net/release/SDL_net-${PV}.tar.gz" S = "${WORKDIR}/SDL_net-${PV}" inherit autotools + EXTRA_OECONF += "SDL_CONFIG=${STAGING_BINDIR_CROSS}/sdl-config" do_stage() { - oe_libinstall -so libSDL_net ${STAGING_LIBDIR} - ln -sf libSDL_net.so ${STAGING_LIBDIR}/libSDL_net-1.2.so - install -m 0644 SDL_net.h ${STAGING_INCDIR}/SDL/SDL_net.h + autotools_stage_all } |