From patchwork Tue Oct 13 15:20:28 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 53431 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n9DFQUfr028633 for ; Tue, 13 Oct 2009 15:26:31 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753043AbZJMPVA (ORCPT ); Tue, 13 Oct 2009 11:21:00 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1760238AbZJMPVA (ORCPT ); Tue, 13 Oct 2009 11:21:00 -0400 Received: from mx1.redhat.com ([209.132.183.28]:3572 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750914AbZJMPU7 (ORCPT ); Tue, 13 Oct 2009 11:20:59 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9DFKXv5004147 for ; Tue, 13 Oct 2009 11:20:34 -0400 Received: from zweiblum.home.kraxel.org (vpn2-9-62.ams2.redhat.com [10.36.9.62]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with SMTP id n9DFKWX8027645; Tue, 13 Oct 2009 11:20:32 -0400 Received: by zweiblum.home.kraxel.org (Postfix, from userid 500) id 7DFFC700FA; Tue, 13 Oct 2009 17:20:29 +0200 (CEST) From: Gerd Hoffmann To: kvm@vger.kernel.org Cc: Gerd Hoffmann Subject: [PATCH] fix quoting in configure Date: Tue, 13 Oct 2009 17:20:28 +0200 Message-Id: <1255447228-6000-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org 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