Browse Source

build: add missing configure quotes

Change-Id: I14abb24292d4c2ff088c7b95773f73ceac3287cd
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/1445
Tested-by: jenkins
tags/v0.8.0-rc1
Spencer Oliver 10 years ago
parent
commit
601e35571c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      configure.ac

+ 2
- 2
configure.ac View File

@@ -1199,10 +1199,10 @@ fi
use_libusb1=no
if test $need_usb = yes -o $need_usb_ng = yes; then
AC_CHECK_HEADER([libusb-1.0/libusb.h], [
AC_DEFINE(HAVE_LIBUSB1, 1, [Define if you have libusb-1.x])
AC_DEFINE([HAVE_LIBUSB1], [1], [Define if you have libusb-1.x])
use_libusb1=yes
AC_SEARCH_LIBS([libusb_error_name], [usb-1.0],
[AC_DEFINE(HAVE_LIBUSB_ERROR_NAME, 1, [Define if your libusb has libusb_error_name()])],
[AC_DEFINE([HAVE_LIBUSB_ERROR_NAME], [1], [Define if your libusb has libusb_error_name()])],
[AC_MSG_WARN([libusb-1.x older than 1.0.9 detected, consider updating])])
], [
if test $need_usb_ng = yes; then


Loading…
Cancel
Save