summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorStefan Weil2012-12-16 11:29:45 +0100
committerStefan Hajnoczi2012-12-18 17:40:40 +0100
commit779ab5e3ddb9ad903f9a0ec21e148ed7bfd2d255 (patch)
treef8d64f28859a1276dd32355e3ae7fd412459752f /configure
parentvmmouse_reset(): remove minimal code duplication (diff)
downloadqemu-779ab5e3ddb9ad903f9a0ec21e148ed7bfd2d255.tar.gz
qemu-779ab5e3ddb9ad903f9a0ec21e148ed7bfd2d255.tar.xz
qemu-779ab5e3ddb9ad903f9a0ec21e148ed7bfd2d255.zip
configure: Earlier pkg-config probe
Probe pkg-config before it is used for the first time (libseccomp check). Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 8 insertions, 8 deletions
diff --git a/configure b/configure
index ecdb33a58e..728caca0d0 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