diff options
author | Max Kellermann <max@duempel.org> | 2012-04-23 21:27:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-04-23 21:54:08 +0200 |
commit | 0de39b64cbd6834452b5e3c3603aa836aa52d1fb (patch) | |
tree | 8e94ff50cc14ff0695befa0be2a2dfd8b40b0730 /configure.ac | |
parent | 36a7b4e275d0a7002a556e92eb18363c005826f5 (diff) |
configure.ac: work around syntax error
.. when HAVE_WINDOWS was not set.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a84d6f698..a3794924f 100644 --- a/configure.ac +++ b/configure.ac @@ -87,7 +87,7 @@ mingw32* | windows*) HAVE_WINDOWS=1 ;; esac -AM_CONDITIONAL([HAVE_WINDOWS], [test $HAVE_WINDOWS -eq 1]) +AM_CONDITIONAL([HAVE_WINDOWS], [test x$HAVE_WINDOWS = x1]) if test -z "$prefix" || test "x$prefix" = xNONE; then local_lib= |