From 6a87231529aee6e98405ac97bb72d079d878d2b9 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sat, 7 Feb 2009 15:33:27 +0000 Subject: Fix python/seed exclusivity check svn path=/trunk/; revision=8760 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 1537fd02a..585b3d09e 100644 --- a/configure.ac +++ b/configure.ac @@ -290,7 +290,7 @@ AC_ARG_ENABLE([python], [enable_python=autodetect have_python=yes]) AC_MSG_RESULT([$enable_python]) -if test "$enable_seed" = "yes" -a "$enable_python" = "yes"; then +if test "$enable_seed" = "yes" -a "$enable_python" != "no"; then AC_MSG_ERROR([cannot enable seed and python support at the same time]) fi -- cgit