diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2017-10-01 02:18:37 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-10-04 09:57:02 +0200 |
commit | c15562c0dcb2c7f26e891923b784cf1926b8c833 (patch) | |
tree | 00d3d8e4fa9db6c472b2d5d9e8a02e9ed2035d74 /tools/usb | |
parent | 38502ef49f96f7fe25fcb3aaa904a570df955c2c (diff) | |
download | linux-stable-c15562c0dcb2c7f26e891923b784cf1926b8c833.tar.gz linux-stable-c15562c0dcb2c7f26e891923b784cf1926b8c833.tar.bz2 linux-stable-c15562c0dcb2c7f26e891923b784cf1926b8c833.zip |
usbip: tools: Install all headers needed for libusbip development
usbip_host_driver.h now depends on several additional headers, which
need to be installed along with it.
Fixes: 021aed845303 ("staging: usbip: userspace: migrate usbip_host_driver ...")
Fixes: 3391ba0e2792 ("usbip: tools: Extract generic code to be shared with ...")
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Acked-by: Shuah Khan <shuahkh@osg.samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/usb')
-rw-r--r-- | tools/usb/usbip/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/usb/usbip/Makefile.am b/tools/usb/usbip/Makefile.am index 66f8bf038c9f..45eaa70a71e0 100644 --- a/tools/usb/usbip/Makefile.am +++ b/tools/usb/usbip/Makefile.am @@ -1,6 +1,7 @@ SUBDIRS := libsrc src includedir = @includedir@/usbip include_HEADERS := $(addprefix libsrc/, \ - usbip_common.h vhci_driver.h usbip_host_driver.h) + usbip_common.h vhci_driver.h usbip_host_driver.h \ + list.h sysfs_utils.h usbip_host_common.h) dist_man_MANS := $(addprefix doc/, usbip.8 usbipd.8) |