diff options
author | Juan Quintela <quintela@redhat.com> | 2009-08-31 17:16:43 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-09 17:31:26 -0500 |
commit | 3aefa744551f3e9a4ea8776b607e77e99637d2e1 (patch) | |
tree | de843ca272ab3802d2653109cbe2270aa0aa22e6 /configure | |
parent | ae20c622ec7049d96c9d1a626767f94bddfc7859 (diff) |
fix VNC SASL detection
This test was missing the change to != no.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1000,7 +1000,7 @@ fi ########################################## # VNC SASL detection -if test "$vnc_sasl" = "yes" ; then +if test "$vnc_sasl" != "no" ; then cat > $TMPC <<EOF #include <sasl/sasl.h> #include <stdio.h> |