From 2f5e71450507a34564c4c5504047af2f5abf1f2f Mon Sep 17 00:00:00 2001 From: Leo Soares Date: Thu, 16 Jun 2022 23:25:39 +0100 Subject: [PATCH] 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 (added fixed tag, reworded commit) Signed-off-by: Christian Lamparter (cherry picked from commit dc59a22f1d0f3a98eee9fa2043f03a764fbefe10) --- package/libs/libusb/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/libs/libusb/Makefile b/package/libs/libusb/Makefile index 1884430bf9..fc26468c49 100644 --- a/package/libs/libusb/Makefile +++ b/package/libs/libusb/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libusb PKG_VERSION:=1.0.24 -PKG_RELEASE:=2 +PKG_RELEASE:=$(AUTORELEASE) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=\ @@ -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))