From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=51420 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PhPAL-0004mr-3Z for qemu-devel@nongnu.org; Mon, 24 Jan 2011 11:21:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PhPA7-0005qs-IA for qemu-devel@nongnu.org; Mon, 24 Jan 2011 11:21:16 -0500 Received: from mx1.redhat.com ([209.132.183.28]:32426) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PhPA7-0005qc-5A for qemu-devel@nongnu.org; Mon, 24 Jan 2011 11:21:03 -0500 From: Gerd Hoffmann Date: Mon, 24 Jan 2011 17:20:48 +0100 Message-Id: <1295886049-30548-8-git-send-email-kraxel@redhat.com> In-Reply-To: <1295886049-30548-1-git-send-email-kraxel@redhat.com> References: <1295886049-30548-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 7/8] configure: Fix spice probe List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Jiri Denemark , Jiri Denemark , Gerd Hoffmann From: Jiri Denemark Non-existent $pkgconfig instead of $pkg_config was used when configure probes for spice availability. Signed-off-by: Jiri Denemark Signed-off-by: Gerd Hoffmann --- configure | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 210670c..dc469b2 100755 --- a/configure +++ b/configure @@ -2207,9 +2207,9 @@ if test "$spice" != "no" ; then #include int main(void) { spice_server_new(); return 0; } EOF - spice_cflags=$($pkgconfig --cflags spice-protocol spice-server 2>/dev/null) - spice_libs=$($pkgconfig --libs spice-protocol spice-server 2>/dev/null) - if $pkgconfig --atleast-version=0.5.3 spice-server >/dev/null 2>&1 && \ + spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null) + spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null) + if $pkg_config --atleast-version=0.5.3 spice-server >/dev/null 2>&1 && \ compile_prog "$spice_cflags" "$spice_libs" ; then spice="yes" libs_softmmu="$libs_softmmu $spice_libs" -- 1.7.1