diff mbox

fix quoting in configure

Message ID 1255447228-6000-1-git-send-email-kraxel@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Gerd Hoffmann Oct. 13, 2009, 3:20 p.m. UTC
None
diff mbox

Patch

diff --git a/configure b/configure
index 2341772..b0d5bd9 100755
--- a/configure
+++ b/configure
@@ -1414,7 +1414,7 @@  if test "$kvm_cap_pit" != "no" ; then
 #endif
 int main(void) { return 0; }
 EOF
-  if compile_prog $kvm_cflags ""; then
+  if compile_prog "$kvm_cflags" ""; then
     kvm_cap_pit=yes
   else
     if test "$kvm_cap_pit" = "yes" ; then
@@ -1438,7 +1438,7 @@  if test "$kvm_cap_device_assignment" != "no" ; then
 #endif
 int main(void) { return 0; }
 EOF
-  if compile_prog $kvm_cflags "" ; then
+  if compile_prog "$kvm_cflags" "" ; then
     kvm_cap_device_assignment=yes
   else
     if test "$kvm_cap_device_assignment" = "yes" ; then