[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 2/8] configure: Make missing pkg-config an error rat
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PATCH 2/8] configure: Make missing pkg-config an error rather than a warning |
Date: |
Wed, 21 Sep 2011 11:26:00 +0100 |
From: Peter Maydell <address@hidden>
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 <address@hidden>
Acked-by: Paolo Bonzini <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
configure | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
index 414317a..9ab3ab4 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
##########################################
--
1.7.5.4
- [Qemu-devel] [PULL 0/8] Trivial patches for September 10 to 21 2011, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 1/8] target-i386: Remove data type CCTable, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 3/8] fix compilation with stderr trace backend, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 5/8] Silence make if nothing is to do for libcacard, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 7/8] Remove qemu_host_page_bits, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 2/8] configure: Make missing pkg-config an error rather than a warning,
Stefan Hajnoczi <=
- [Qemu-devel] [PATCH 8/8] use qemu_* ctype functions, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 6/8] Abort on thread layer errors, Stefan Hajnoczi, 2011/09/21
- [Qemu-devel] [PATCH 4/8] Drop unneeded pthread.h inclusions, Stefan Hajnoczi, 2011/09/21
- Re: [Qemu-devel] [PULL 0/8] Trivial patches for September 10 to 21 2011, Anthony Liguori, 2011/09/22