From: Peter Korsgaard Date: Thu, 17 Jul 2008 09:55:27 +0000 (-0000) Subject: sdl_mixer: fix sdl dependency X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c40de9fe70b5214f344a3a40c21104cd48afe55f;p=buildroot.git sdl_mixer: fix sdl dependency --- diff --git a/package/sdl_mixer/Config.in b/package/sdl_mixer/Config.in index 2cc1457a70..52247cd4b5 100644 --- a/package/sdl_mixer/Config.in +++ b/package/sdl_mixer/Config.in @@ -1,8 +1,8 @@ config BR2_PACKAGE_SDL_MIXER bool "SDL_mixer" default n + depends on BR2_PACKAGE_SDL help - SDL_mixer is a sample multi-channel audio mixer library. It supports any number of simultaneously playing channels of 16 bit stereo audio, plus a single channel of music, mixed diff --git a/package/sdl_mixer/sdl_mixer.mk b/package/sdl_mixer/sdl_mixer.mk index f6a8d4394b..3c88eae263 100644 --- a/package/sdl_mixer/sdl_mixer.mk +++ b/package/sdl_mixer/sdl_mixer.mk @@ -48,7 +48,7 @@ $(TARGET_DIR)/usr/lib/libSDL_mixer.so: $(STAGING_DIR)/usr/lib/libSDL_mixer.so cp -dpf $(STAGING_DIR)/usr/lib/libSDL_mixer*.so* $(TARGET_DIR)/usr/lib/ -$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libSDL_mixer*.so* -sdl_mixer: uclibc $(TARGET_DIR)/usr/lib/libSDL_mixer.so +sdl_mixer: sdl uclibc $(TARGET_DIR)/usr/lib/libSDL_mixer.so sdl_mixer-clean: rm -f $(TARGET_DIR)/usr/lib/libSDL_mixer*.so*