diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2017-10-01 02:18:37 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-12-10 13:40:42 +0100 |
commit | 87837b102c0630fd559a412f6fa48c8e9710755c (patch) | |
tree | 59e51710102b2cfeafc4122b28ec54200efe25b5 | |
parent | 25aafb3061f64099e379dfb24e394b07f3f93b38 (diff) | |
download | linux-stable-87837b102c0630fd559a412f6fa48c8e9710755c.tar.gz linux-stable-87837b102c0630fd559a412f6fa48c8e9710755c.tar.bz2 linux-stable-87837b102c0630fd559a412f6fa48c8e9710755c.zip |
usbip: tools: Install all headers needed for libusbip development
[ Upstream commit c15562c0dcb2c7f26e891923b784cf1926b8c833 ]
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>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-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 da3a430849a8..5961e9c18812 100644 --- a/tools/usb/usbip/Makefile.am +++ b/tools/usb/usbip/Makefile.am @@ -2,6 +2,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) |