From: Ho Kim Date: Wed, 14 Jan 2026 01:22:53 +0000 (+0900) Subject: liboqs: fix missing symbolic link installation X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=7990a8d3bec675f675092e6d38582d08b6eef363;p=openwrt-packages.git liboqs: fix missing symbolic link installation The current installation process fails to correctly install the 'liboqs.so' symbolic link due to an incorrect path syntax (extra dot). This prevents other packages from linking against liboqs (e.g., using -loqs) during development, which was discovered while testing PQC key exchange implementations dependent on OQS. Removes the trailing dot to ensure the symbolic link is preserved and copied correctly to the destination directory. Signed-off-by: Ho Kim --- diff --git a/libs/liboqs/Makefile b/libs/liboqs/Makefile index 1aa614d04..c37e147ae 100644 --- a/libs/liboqs/Makefile +++ b/libs/liboqs/Makefile @@ -60,7 +60,7 @@ define Build/InstallDev $(1)/usr/include/oqs/ $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/liboqs.so.* \ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/liboqs.so* \ $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/lib/pkgconfig @@ -74,7 +74,7 @@ endef define Package/liboqs/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/liboqs.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/liboqs.so* $(1)/usr/lib/ endef $(eval $(call BuildPackage,liboqs))