From: Peter Korsgaard Date: Thu, 16 Sep 2010 11:52:17 +0000 (+0200) Subject: sdl_sound: cleanup uninstall handling X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e7895986de4ec8819dbb7da4b939d8daec6606a2;p=buildroot.git sdl_sound: cleanup uninstall handling SDL_SOUND_SUBDIR doesn't exist, so the staging uninstall handling is equivalent to the default one. Signed-off-by: Peter Korsgaard --- diff --git a/package/sdl_sound/sdl_sound.mk b/package/sdl_sound/sdl_sound.mk index 9234ab6905..bd94a6275f 100644 --- a/package/sdl_sound/sdl_sound.mk +++ b/package/sdl_sound/sdl_sound.mk @@ -49,14 +49,10 @@ ifneq ($(BR2_PACKAGE_SDL_SOUND_PLAYSOUND),y) SDL_SOUND_POST_INSTALL_TARGET_HOOKS += SDL_SOUND_REMOVE_PLAYSOUND endif -define SDL_SOUND_UNINSTALL_STAGING_CMDS - $(MAKE) DESTDIR=$(STAGING_DIR) uninstall -C $(@D)/$(SDL_SOUND_SUBDIR) -endef - # target shared libs doesn't get removed by make uninstall if the .la # files are removed (E.G. if BR2_HAVE_DEVFILES isn't set) define SDL_SOUND_UNINSTALL_TARGET_CMDS - $(MAKE) DESTDIR=$(TARGET_DIR) uninstall -C $(@D)/$(SDL_SOUND_SUBDIR) + $(MAKE) DESTDIR=$(TARGET_DIR) uninstall -C $(@D) rm -f $(TARGET_DIR)/usr/lib/libSDL_sound*so* endef