[vmkit-commits] [vmkit] r185426 - Fail the configure if zip is not found. It is necessary to the build process

Sylvestre Ledru sylvestre at debian.org
Tue Jul 2 06:55:42 PDT 2013


Author: sylvestre
Date: Tue Jul  2 08:54:25 2013
New Revision: 185426

URL: http://llvm.org/viewvc/llvm-project?rev=185426&view=rev
Log:
Fail the configure if zip is not found. It is necessary to the build process

Modified:
    vmkit/trunk/autoconf/configure.ac

Modified: vmkit/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/autoconf/configure.ac?rev=185426&r1=185425&r2=185426&view=diff
==============================================================================
--- vmkit/trunk/autoconf/configure.ac (original)
+++ vmkit/trunk/autoconf/configure.ac Tue Jul  2 08:54:25 2013
@@ -372,6 +372,10 @@ if test -z ${ANT}; then
     AC_MSG_ERROR([Unable to find ant, please put ant tool in your path])
 fi
 
+if test -z ${ZIP}; then
+    AC_MSG_ERROR([Unable to find zip, please put zip in your path])
+fi
+
 if test -z ${LLVM_CONFIG}; then
     AC_MSG_ERROR([Unable to find llvm-config, please specify its path])
 fi





More information about the vmkit-commits mailing list