diff options
author | Fam Zheng <famz@redhat.com> | 2017-09-07 16:29:17 +0800 |
---|---|---|
committer | Fam Zheng <famz@redhat.com> | 2017-09-22 10:20:34 +0800 |
commit | b878b652df08360e5440710acf987d6b6ab945b7 (patch) | |
tree | 35914df5f7242aa3ba22e43d778745a11dd716bd /configure | |
parent | 7b62bf5a701069b14a083de9af7e971e7603b36c (diff) | |
download | qemu-b878b652df08360e5440710acf987d6b6ab945b7.zip qemu-b878b652df08360e5440710acf987d6b6ab945b7.tar.gz qemu-b878b652df08360e5440710acf987d6b6ab945b7.tar.bz2 |
buildsys: Move libusb cflags/libs to per object
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-Id: <20170907082918.7299-9-famz@redhat.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Fam Zheng <famz@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4221,8 +4221,6 @@ if test "$libusb" != "no" ; then libusb="yes" libusb_cflags=$($pkg_config --cflags libusb-1.0) libusb_libs=$($pkg_config --libs libusb-1.0) - QEMU_CFLAGS="$QEMU_CFLAGS $libusb_cflags" - libs_softmmu="$libs_softmmu $libusb_libs" else if test "$libusb" = "yes"; then feature_not_found "libusb" "Install libusb devel >= 1.0.13" @@ -5789,6 +5787,8 @@ fi if test "$libusb" = "yes" ; then echo "CONFIG_USB_LIBUSB=y" >> $config_host_mak + echo "LIBUSB_CFLAGS=$libusb_cflags" >> $config_host_mak + echo "LIBUSB_LIBS=$libusb_libs" >> $config_host_mak fi if test "$usb_redir" = "yes" ; then |