From dfa0c226baf875ac1048d05503e99dfb7aa8b5cd Mon Sep 17 00:00:00 2001 From: Michael Heimpold Date: Fri, 5 Sep 2014 23:20:48 +0200 Subject: [PATCH] libexpat: do not install soname symlink The .so symlinks (without any suffix) are only used by compiler/linker and not needed on the target system. See https://github.com/openwrt/packages/pull/274 for a short discussion. Signed-off-by: Michael Heimpold --- libs/expat/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/expat/Makefile b/libs/expat/Makefile index dee99e0c77..db599d9f53 100644 --- a/libs/expat/Makefile +++ b/libs/expat/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=expat PKG_VERSION:=2.1.0 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_MD5SUM:=dd7dab7a5fea97d2a6a43f511449b7cd @@ -62,7 +62,7 @@ endef define Package/libexpat/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libexpat.so* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libexpat.so.* $(1)/usr/lib/ endef $(eval $(call HostBuild))