[openwrt/openwrt] libusb: fix missing link
LEDE Commits
lede-commits at lists.infradead.org
Sun Jun 19 03:41:10 PDT 2022
chunkeey pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/dc59a22f1d0f3a98eee9fa2043f03a764fbefe10
commit dc59a22f1d0f3a98eee9fa2043f03a764fbefe10
Author: Leo Soares <leo at hyper.ag>
AuthorDate: Thu Jun 16 23:25:39 2022 +0100
libusb: fix missing link
adds `libusb-1.0.so` link on the target root again.
Fixes: 43539a6aabbe ("libusb: make InstallDev explicit")
Signed-off-by: Leo Soares <leo at hyper.ag>
(added fixed tag, reworded commit)
Signed-off-by: Christian Lamparter <chunkeey at gmail.com>
---
package/libs/libusb/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/libs/libusb/Makefile b/package/libs/libusb/Makefile
index 6b80b3848d..fc26468c49 100644
--- a/package/libs/libusb/Makefile
+++ b/package/libs/libusb/Makefile
@@ -56,7 +56,7 @@ endef
define Package/libusb-1.0/install
$(INSTALL_DIR) $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libusb-1.0.so.* $(1)/usr/lib/
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libusb-1.0.so* $(1)/usr/lib/
endef
$(eval $(call BuildPackage,libusb-1.0))
More information about the lede-commits
mailing list