When building kvm-userspace from git, gawk and unifdef are used by 
kernel/Makefile. Without this check it's non-obvious why kernel/Makefile 
fails.

Signed-off-by: Brian Jackson <[EMAIL PROTECTED]>

diff --git a/configure b/configure
index 3b5d14f..26f73f3 100755
--- a/configure
+++ b/configure
@@ -113,6 +113,17 @@ if [ -d "$kerneldir/include2" ]; then
     kernelsourcedir=${kerneldir%/*}/source
 fi

+# check for some utils we use
+if [ -d .git ] ; then
+    if [ ! -x "`which gawk`" ] ; then
+        echo "gawk not installed and necessary for compiling from git"
+        exit 1
+    fi
+    if [ ! -x "`which unifdef`" ] ; then
+        echo "unifdef not installed and necessary for compiling from git"
+        exit 1
+fi
+
 #configure user dir
 (cd user; ./configure --prefix="$prefix" --kerneldir="$libkvm_kerneldir" \
           --arch="$arch" \
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to