From: Peter Maydell Date: Thu, 15 Sep 2011 11:15:56 +0000 (+0100) Subject: configure: Make missing pkg-config an error rather than a warning X-Git-Tag: v1.0-rc0~208^2~6 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=a213fcb21c69c7c3b206d7e251d31559859f1545;p=qemu.git configure: Make missing pkg-config an error rather than a warning If pkg-config doesn't exist then make configure fail immediately with a useful error message. Now that glib is a required dependency, proceeding despite the missing pkg-config will just cause us to fail later with a misleading message about glib not being present. Signed-off-by: Peter Maydell Acked-by: Paolo Bonzini Signed-off-by: Stefan Hajnoczi --- diff --git a/configure b/configure index 414317af0..9ab3ab4eb 100755 --- a/configure +++ b/configure @@ -1340,8 +1340,8 @@ fi # pkg-config probe if ! has $pkg_config; then - echo warning: proceeding without "$pkg_config" >&2 - pkg_config=/bin/false + echo "Error: pkg-config binary '$pkg_config' not found" + exit 1 fi ##########################################