From 08cfcc30b04cacb02d8273260cafa6ccbc2a4e63 Mon Sep 17 00:00:00 2001 From: Romuald Conty Date: Mon, 8 Feb 2010 11:48:23 +0000 Subject: [PATCH] Add some quotes to prevent from expanding. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 59215f1..a63a4be 100644 --- a/configure.ac +++ b/configure.ac @@ -117,7 +117,7 @@ if test "x$enable_libusb" = "xyes"; then # Search using pkg-config if test x"$PKG_CONFIG" != "x"; then - PKG_CHECK_MODULES(LIBUSB, libusb, [WITH_USB=1], [WITH_USB=0]) + PKG_CHECK_MODULES([LIBUSB], [libusb], [WITH_USB=1], [WITH_USB=0]) if test x"$PKG_CONFIG_REQUIRES" != x""; then PKG_CONFIG_REQUIRES="$PKG_CONFIG_REQUIRES," fi @@ -160,7 +160,7 @@ if test "x$enable_pcsc_lite" = "xyes"; then LIBPCSCLITE_CFLAGS="-I/System/Library/Frameworks/PCSC.framework/Headers" ;; *) - PKG_CHECK_MODULES(LIBPCSCLITE, libpcsclite, [WITH_PCSC=1], [WITH_PCSC=0]) + PKG_CHECK_MODULES([LIBPCSCLITE], [libpcsclite], [WITH_PCSC=1], [WITH_PCSC=0]) if test x"$WITH_PCSC" = "x0" ; then AC_MSG_ERROR([libpcsclite is mandatory.]) fi