From: mb Date: Mon, 4 Jan 2010 21:20:44 +0000 (+0000) Subject: libsdl_{mixer,sound}: Fix copying of libraries to the rootfs X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=361f7232b331c5e0f8fe79c63dd18934f07cf633;p=packages.git libsdl_{mixer,sound}: Fix copying of libraries to the rootfs git-svn-id: svn://svn.openwrt.org/openwrt/packages@19038 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/libs/libsdl_mixer/Makefile b/libs/libsdl_mixer/Makefile index 97f1621c7..cc28b51c1 100644 --- a/libs/libsdl_mixer/Makefile +++ b/libs/libsdl_mixer/Makefile @@ -60,7 +60,7 @@ endef define Package/libsdl-mixer/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libSDL_mixer*.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libSDL_mixer*.so* $(1)/usr/lib/ endef $(eval $(call BuildPackage,libsdl-mixer)) diff --git a/libs/libsdl_sound/Makefile b/libs/libsdl_sound/Makefile index 7efe489de..2d1953758 100644 --- a/libs/libsdl_sound/Makefile +++ b/libs/libsdl_sound/Makefile @@ -58,7 +58,7 @@ endef define Package/libsdl-sound/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libSDL_sound*.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libSDL_sound*.so* $(1)/usr/lib/ endef $(eval $(call BuildPackage,libsdl-sound))