diff options
author | Christian Persch <chpe@src.gnome.org> | 2009-02-07 23:33:27 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2009-02-07 23:33:27 +0800 |
commit | 6a87231529aee6e98405ac97bb72d079d878d2b9 (patch) | |
tree | 9388678f974a3a1141fa928288b0b3aa32d0ae7b /configure.ac | |
parent | e9f35ceef4515f8526b301af3cf5c54923966ed6 (diff) | |
download | gsoc2013-epiphany-6a87231529aee6e98405ac97bb72d079d878d2b9.tar.gz gsoc2013-epiphany-6a87231529aee6e98405ac97bb72d079d878d2b9.tar.zst gsoc2013-epiphany-6a87231529aee6e98405ac97bb72d079d878d2b9.zip |
Fix python/seed exclusivity check
svn path=/trunk/; revision=8760
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 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 |