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 | db87169b41488c784ea625ddeef6e0e0542c82f2 (patch) | |
tree | 5fd1ea56261323dd5d31ccc05c6648180651d9ef | |
parent | ee37a00d06c72a3e52a1fd0cfcb5360882f51046 (diff) | |
download | upstream-db87169b41488c784ea625ddeef6e0e0542c82f2.tar.gz upstream-db87169b41488c784ea625ddeef6e0e0542c82f2.tar.bz2 upstream-db87169b41488c784ea625ddeef6e0e0542c82f2.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>
SVN-Revision: 39975
-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 |