]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
build: quote AC_LANG_PROGRAM to avoid warnings with autoconf 2.68
authorDiego Elio Pettenò <flameeyes@gmail.com>
Mon, 13 Dec 2010 13:44:47 +0000 (14:44 +0100)
committerEric Blake <eblake@redhat.com>
Mon, 13 Dec 2010 18:01:15 +0000 (11:01 -0700)
configure.ac

index c194510293250f669a2386331ed180da63742ff7..64e76dce31424688ee0b0075d2d41a15c943efa7 100644 (file)
@@ -73,7 +73,7 @@ VERSION_SCRIPT_FLAGS=-Wl,--version-script=
 LIBVIRT_COMPILE_WARNINGS([maximum])
 
 AC_MSG_CHECKING([for CPUID instruction])
-AC_COMPILE_IFELSE(AC_LANG_PROGRAM(
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
   [[
     #include <stdint.h>
   ]],
@@ -83,7 +83,7 @@ AC_COMPILE_IFELSE(AC_LANG_PROGRAM(
         "cpuid"
         : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx)
         : "a" (eax));
-  ]]),
+  ]])],
   [have_cpuid=yes],
   [have_cpuid=no])
 if test "x$have_cpuid" = xyes; then