From bc417a9558a3cbc212fdf6c5c0dca0ef93d75e55 Mon Sep 17 00:00:00 2001 From: Leo Soares Date: Tue, 17 May 2022 00:02:26 +0100 Subject: [PATCH] libcoap: make sure `libcoap-3-notls.so` is installed This commit fixes an issue where the `libcoap-3-notls.so` is not installed, in some cases leaving the target's root with no library and just a broken link from `libcoap-3.so` to `libcoap-3-notls.so`. Signed-off-by: Leo Soares (cherry picked from commit 80c4d675c22ee12516435b6ff4ce80e13c676d9b) --- libs/libcoap/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/libcoap/Makefile b/libs/libcoap/Makefile index 56d884034..eef8820fd 100644 --- a/libs/libcoap/Makefile +++ b/libs/libcoap/Makefile @@ -79,7 +79,7 @@ endef define Package/libcoap/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcoap-$(ABI_VERSION).so* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcoap-$(ABI_VERSION)*.so* $(1)/usr/lib/ endef define Package/coap-client/install