[Libreoffice-commits] .: configure.in

Thomas Arnhold tarnhold at kemper.freedesktop.org
Sun Jul 17 10:32:54 PDT 2011


 configure.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f4f433e864571bc92092ac6cea15cf5d04490512
Author: Thomas Arnhold <thomas at arnhold.org>
Date:   Sun Jul 17 19:29:39 2011 +0200

    Check for unzip
    
    This wasn't working on Linux. Build was started no matter if unzip
    was found or not. This lead to other errors and finally to a build
    break. Hopefully this doesn't break other platforms.

diff --git a/configure.in b/configure.in
index 9ad2f52..8289e6e 100755
--- a/configure.in
+++ b/configure.in
@@ -6380,7 +6380,7 @@ dnl ===================================================================
 AC_PATH_PROG(ZIP, zip)
 test -z "$ZIP" && AC_MSG_ERROR([zip is required])
 AC_PATH_PROG(UNZIP, unzip)
-test -z "$ZIP" && AC_MSG_ERROR([unzip is required])
+test -z "$UNZIP" && AC_MSG_ERROR([unzip is required])
 
 dnl ===================================================================
 dnl Zip must be a specific type for different build types.


More information about the Libreoffice-commits mailing list