diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-09-08 13:12:17 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-09-13 10:44:49 +0200 |
commit | 2041649f0b04f61869589571ddf5ecd4f0695ea2 (patch) | |
tree | 61cb5b38d773d67f11cfed6009d15d3e23ff3b71 | |
parent | 4e5ee5b21c84fe3023a64b5cc2e12a52ab0597c1 (diff) |
usb: only build usb-host with CONFIG_USB=y
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Tested-by: Thomas Huth <thuth@redhat.com>
Message-id: 20170908111217.21985-3-kraxel@redhat.com
-rw-r--r-- | hw/usb/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/Makefile.objs b/hw/usb/Makefile.objs index a43ebbc17f..757e365562 100644 --- a/hw/usb/Makefile.objs +++ b/hw/usb/Makefile.objs @@ -38,7 +38,7 @@ endif common-obj-$(CONFIG_USB_REDIR) += redirect.o quirks.o # usb pass-through -ifeq ($(CONFIG_LIBUSB),y) +ifeq ($(CONFIG_LIBUSB)$(CONFIG_USB),yy) common-obj-y += host-libusb.o host-legacy.o else common-obj-y += host-stub.o |