From: Nathaniel Wesley Filardo Date: Sat, 6 Jul 2024 05:35:47 +0000 (+0100) Subject: pcsc-lite: install libpcsclite_real.{a,so*}, too X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=5bf463bd96393dc83007dd264e31fca38c126fb2;p=feed%2Fpackages.git pcsc-lite: install libpcsclite_real.{a,so*}, too 74ee2fa4899 failed to notice that libpcsclite now supports redirection, as of https://salsa.debian.org/rousseau/PCSC/-/commit/1faab672aa1f926cf943d8b814ae15636dddd22c (first present in upstream release 2.1.0). It's important to include the real implementation, even if redirection permits loading others. Signed-off-by: Nathaniel Wesley Filardo --- diff --git a/utils/pcsc-lite/Makefile b/utils/pcsc-lite/Makefile index 06e74057db..f8a0495b31 100644 --- a/utils/pcsc-lite/Makefile +++ b/utils/pcsc-lite/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pcsc-lite PKG_VERSION:=2.2.3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://pcsclite.apdu.fr/files/ @@ -79,6 +79,7 @@ define Build/InstallDev $(CP) $(PKG_INSTALL_DIR)/usr/include/PCSC/* $(1)/usr/include/PCSC/ $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcsclite.{a,so*} $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcsclite_real.{a,so*} $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libpcsclite.pc $(1)/usr/lib/pkgconfig/ endef @@ -86,6 +87,7 @@ endef define Package/libpcsclite/install $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcsclite.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcsclite_real.so.* $(1)/usr/lib/ endef define Package/pcscd/conffiles