diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2010-02-09 15:15:44 +0100 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2010-02-09 15:15:44 +0100 |
commit | 6b2ca4e158c3394f5aba8f0f01ff1734423683f9 (patch) | |
tree | f08be41b517bfdbdd9fbd365b5c90a863175395e | |
parent | 4c870ede7fdecaf1f952b01096e09cc03a7c7aef (diff) |
ZMQII-67: Build checks for python even if it's not needed
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index d9da679..078f27c 100644 --- a/configure.in +++ b/configure.in @@ -322,7 +322,7 @@ fi RUBYDIR="$rubydir" AC_SUBST([RUBYDIR]) -if test "x$pyzmq" != "xyes"; then +if test "x$pyzmq" = "xyes"; then AC_CHECK_PROG(have_python, python, yes, no) if test "x$have_python" != "xyes"; then AC_MSG_ERROR([Could not find python.]) |