aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-08-31 17:16:43 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-09-09 17:31:26 -0500
commit3aefa744551f3e9a4ea8776b607e77e99637d2e1 (patch)
treede843ca272ab3802d2653109cbe2270aa0aa22e6 /configure
parentoptionrom: make clean should remove raw and .d (diff)
downloadqemu-kvm-3aefa744551f3e9a4ea8776b607e77e99637d2e1.tar.gz
qemu-kvm-3aefa744551f3e9a4ea8776b607e77e99637d2e1.tar.bz2
qemu-kvm-3aefa744551f3e9a4ea8776b607e77e99637d2e1.zip
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-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 618e4dce2..863bf58e8 100755
--- a/configure
+++ b/configure
@@ -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>