diff options
author | Florian Fainelli <florian@openwrt.org> | 2014-03-20 23:16:06 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2014-03-20 23:16:06 +0000 |
commit | 625627d080372b4fba13122b2feec2d37431399b (patch) | |
tree | a3a854f0faec926353b51320550681b0d063983e /package/libs/libusb-compat | |
parent | 0b8f6c7be858697039bd8289dff2e169fa7b4406 (diff) | |
download | upstream-625627d080372b4fba13122b2feec2d37431399b.tar.gz upstream-625627d080372b4fba13122b2feec2d37431399b.tar.bz2 upstream-625627d080372b4fba13122b2feec2d37431399b.zip |
libusb-compat: install libusb-config in host staging dir
A bunch of packages such as sispctl look for libusb-config to find it, install
libusb-config in staging_dir/*/host/bin which is in the TARGET_PATH.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39975 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/libs/libusb-compat')
-rw-r--r-- | package/libs/libusb-compat/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libs/libusb-compat/Makefile b/package/libs/libusb-compat/Makefile index e80f80bf6b..3b770837da 100644 --- a/package/libs/libusb-compat/Makefile +++ b/package/libs/libusb-compat/Makefile @@ -39,6 +39,7 @@ TARGET_CFLAGS += $(FPIC) define Build/InstallDev $(CP) $(PKG_INSTALL_DIR)/* $(1)/ + $(CP) $(PKG_INSTALL_DIR)/usr/bin/libusb-config $(STAGING_DIR)/host/bin endef define Package/libusb-compat/install |