diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-09 09:06:34 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-09 09:06:34 +0000 |
commit | 171f08073321e08c520298bb4e96498dda92b2c9 (patch) | |
tree | a57e9c47df1a5a3d2c37f97bfdb884d923c61358 | |
parent | 804c58d25c80afd0e20b6b2ea4df22b43d58de91 (diff) |
Fix up the -1.2.so symlinks for the other SDL libs.
BKrev: 409df49a9JrL5_hP-m8dlhNwVpJRJQ
-rw-r--r-- | libsdl/libsdl-image_1.2.3.oe | 4 | ||||
-rw-r--r-- | libsdl/libsdl-mixer_1.2.5.oe | 4 | ||||
-rw-r--r-- | libsdl/libsdl-net_1.2.5.oe | 4 | ||||
-rw-r--r-- | libsdl/libsdl-ttf_2.0.3.oe | 5 |
4 files changed, 8 insertions, 9 deletions
diff --git a/libsdl/libsdl-image_1.2.3.oe b/libsdl/libsdl-image_1.2.3.oe index 9c54849fe7..dd51c4f7ee 100644 --- a/libsdl/libsdl-image_1.2.3.oe +++ b/libsdl/libsdl-image_1.2.3.oe @@ -10,8 +10,8 @@ S = "${WORKDIR}/SDL_image-${PV}" inherit autotools libtool do_stage() { - oe_libinstall -so libSDL_image-1.2 ${STAGING_LIBDIR} - ln -sf libSDL_image-1.2.so ${STAGING_LIBDIR}/libSDL_image.so + oe_libinstall -so libSDL_image ${STAGING_LIBDIR} + ln -sf libSDL_image.so ${STAGING_LIBDIR}/libSDL_image-1.2.so install -m 0644 SDL_image.h ${STAGING_INCDIR}/SDL/SDL_image.h } diff --git a/libsdl/libsdl-mixer_1.2.5.oe b/libsdl/libsdl-mixer_1.2.5.oe index 2f51ae240e..84eaed53e3 100644 --- a/libsdl/libsdl-mixer_1.2.5.oe +++ b/libsdl/libsdl-mixer_1.2.5.oe @@ -14,8 +14,8 @@ EXTRA_OECONF = "--disable-music-mp3" # to deal with optional dependencies do_stage() { - oe_libinstall -so libSDL_mixer-1.2 ${STAGING_LIBDIR} - ln -sf libSDL_mixer-1.2.so ${STAGING_LIBDIR}/libSDL_mixer.so + oe_libinstall -so libSDL_mixer ${STAGING_LIBDIR} + ln -sf libSDL_mixer.so ${STAGING_LIBDIR}/libSDL_mixer-1.2.so install -m 0644 SDL_mixer.h ${STAGING_INCDIR}/SDL/SDL_mixer.h } diff --git a/libsdl/libsdl-net_1.2.5.oe b/libsdl/libsdl-net_1.2.5.oe index 975f8c190f..718daa6110 100644 --- a/libsdl/libsdl-net_1.2.5.oe +++ b/libsdl/libsdl-net_1.2.5.oe @@ -10,8 +10,8 @@ S = "${WORKDIR}/SDL_net-${PV}" inherit autotools libtool do_stage() { - oe_libinstall -so libSDL_net-1.2 ${STAGING_LIBDIR} - ln -sf libSDL_net-1.2.so ${STAGING_LIBDIR}/libSDL_net.so + 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 } diff --git a/libsdl/libsdl-ttf_2.0.3.oe b/libsdl/libsdl-ttf_2.0.3.oe index b02210f843..5926ad3ba7 100644 --- a/libsdl/libsdl-ttf_2.0.3.oe +++ b/libsdl/libsdl-ttf_2.0.3.oe @@ -11,8 +11,7 @@ S = "${WORKDIR}/SDL_ttf-${PV}" inherit autotools libtool do_stage() { - oe_libinstall -so libSDL_ttf-2.0 ${STAGING_LIBDIR} - ln -sf libSDL_ttf-2.0.so ${STAGING_LIBDIR}/libSDL_ttf.so + oe_libinstall -so libSDL_ttf ${STAGING_LIBDIR} + ln -sf libSDL_ttf.so ${STAGING_LIBDIR}/libSDL_ttf-1.2.so install -m 0644 SDL_ttf.h ${STAGING_INCDIR}/SDL/SDL_ttf.h } - |