diff options
author | Stefan Weil | 2012-12-16 11:29:45 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2012-12-18 17:40:40 +0100 |
commit | 779ab5e3ddb9ad903f9a0ec21e148ed7bfd2d255 (patch) | |
tree | f8d64f28859a1276dd32355e3ae7fd412459752f /configure | |
parent | vmmouse_reset(): remove minimal code duplication (diff) | |
download | qemu-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-x | configure | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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 |