diff options
| author | Leo Soares | 2022-06-16 22:25:39 +0000 |
|---|---|---|
| committer | Christian Lamparter | 2022-06-24 22:05:21 +0000 |
| commit | 43fd8f4aba6957148d1e59b245ec4466c7ad3303 (patch) | |
| tree | f5027ce8f4b35a252ca97f0c423eff909056dcaa | |
| parent | f608779f92b368de6f2e858e840bc29c717753c5 (diff) | |
| download | openwrt-43fd8f4aba6957148d1e59b245ec4466c7ad3303.tar.gz | |
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@hyper.ag>
(added fixed tag, reworded commit)
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
(cherry picked from commit dc59a22f1d0f3a98eee9fa2043f03a764fbefe10)
| -rw-r--r-- | package/libs/libusb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |