diff options
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 ab35a2b5..cf23a4a6 100644 --- a/configure.ac +++ b/configure.ac @@ -305,7 +305,7 @@ then if test $have_django_south = yes then AC_MSG_CHECKING([for Django South 0.7.6 or later]) - have_acceptable_django_south=`$PYTHON -c "import south; print 'no' if south.__version__ < '0.7.6' else 'yes'"` + have_acceptable_django_south=`$PYTHON -c "import south; print 'no' if map(int,south.__version__.split('.')) < [[0, 7, 6]] else 'yes'"` AC_MSG_RESULT([$have_acceptable_django_south]) fi fi |