From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:48823) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tl0OS-0002Z5-L7 for qemu-devel@nongnu.org; Tue, 18 Dec 2012 11:51:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tl0OM-0005TB-FB for qemu-devel@nongnu.org; Tue, 18 Dec 2012 11:51:48 -0500 Received: from mx1.redhat.com ([209.132.183.28]:52519) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tl0OM-0005T7-7n for qemu-devel@nongnu.org; Tue, 18 Dec 2012 11:51:42 -0500 From: Stefan Hajnoczi Date: Tue, 18 Dec 2012 17:51:17 +0100 Message-Id: <1355849477-1226-11-git-send-email-stefanha@redhat.com> In-Reply-To: <1355849477-1226-1-git-send-email-stefanha@redhat.com> References: <1355849477-1226-1-git-send-email-stefanha@redhat.com> Subject: [Qemu-devel] [PATCH 10/10] configure: Earlier pkg-config probe List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori From: Stefan Weil Probe pkg-config before it is used for the first time (libseccomp check). Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- configure | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/configure b/configure index ecdb33a..728caca 100755 --- a/configure +++ b/configure @@ -1360,6 +1360,14 @@ esac fi ########################################## +# pkg-config probe + +if ! has "$pkg_config_exe"; then + echo "Error: pkg-config binary '$pkg_config_exe' not found" + exit 1 +fi + +########################################## # NPTL probe if test "$nptl" != "no" ; then @@ -1590,14 +1598,6 @@ if test "$xen_pci_passthrough" != "no"; then fi ########################################## -# pkg-config probe - -if ! has "$pkg_config_exe"; then - echo "Error: pkg-config binary '$pkg_config_exe' not found" - exit 1 -fi - -########################################## # libtool probe if ! has $libtool; then -- 1.8.0.2