From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=41808 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PhNES-0000pU-5H for qemu-devel@nongnu.org; Mon, 24 Jan 2011 09:17:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PhNEO-0006Wk-CM for qemu-devel@nongnu.org; Mon, 24 Jan 2011 09:17:22 -0500 Received: from mx1.redhat.com ([209.132.183.28]:14778) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PhNEO-0006Wb-27 for qemu-devel@nongnu.org; Mon, 24 Jan 2011 09:17:20 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id p0OEHJtQ009965 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 24 Jan 2011 09:17:19 -0500 Date: Mon, 24 Jan 2011 15:17:17 +0100 From: Jiri Denemark Subject: Re: [Qemu-devel] [PATCH] configure: Fix spice probe Message-ID: <20110124141717.GA1818690@orkuz.home> References: <4D3D8637.4020805@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4D3D8637.4020805@redhat.com> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: qemu-devel@nongnu.org On Mon, Jan 24, 2011 at 15:01:27 +0100, Gerd Hoffmann wrote: > On 01/24/11 13:20, Jiri Denemark wrote: > > From: Jiri Denemark > > > > Non-existent $pkgconfig instead of $pkg_config was used when configure > > probes for spice availability. > > What tree you are looking at? It _is_ $pkgconfig in mine ... Yes, it is. And that's the problem, since $pkgconfig is not ever set inside configure script. However, $pkg_config is set and used all over the script so this patch makes spice probe use correct $pkg_config. Jirka