diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-07-17 19:29:39 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-07-17 19:31:33 +0200 |
commit | 18ca4dfd41873aaee396ca27072dcd628be0b398 (patch) | |
tree | b77edb1064cc9c209a98bff3344868f92a030865 /configure.in | |
parent | a2568d4e9984c1bfd64c3a96590c13c283c28f19 (diff) |
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.
Diffstat (limited to 'configure.in')
-rwxr-xr-x | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 9ad2f5247e36..8289e6e8d8f0 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. |