diff options
author | Michael Elkins <melkins@tislabs.com> | 2012-11-27 22:29:14 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2012-11-27 22:29:14 +0000 |
commit | 39691c853de3f6a8f59bcfe798a2c7730e8cf69f (patch) | |
tree | a3ef8ebc7c72ba3116401e8f83af6faddcc2f724 | |
parent | 968d98c3c95dff6ceee72aca0e578005a542fb6a (diff) |
Fix error message regarding the minimum version requirement for Django. See #358
svn path=/trunk/; revision=4918
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -4409,8 +4409,8 @@ $as_echo "$as_me: WARNING: I can't find Python.h. Python sources are required t if test $have_acceptable_django = no then ok=no - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The RPKI CA tools require Django 1.2 or higher." >&5 -$as_echo "$as_me: WARNING: The RPKI CA tools require Django 1.2 or higher." >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The RPKI CA tools require Django 1.3 or higher." >&5 +$as_echo "$as_me: WARNING: The RPKI CA tools require Django 1.3 or higher." >&2;} fi if test $have_vobject = no then diff --git a/configure.ac b/configure.ac index 17c36521..a32be69b 100644 --- a/configure.ac +++ b/configure.ac @@ -340,7 +340,7 @@ case $enable_ca_tools in if test $have_acceptable_django = no then ok=no - AC_MSG_WARN([The RPKI CA tools require Django 1.2 or higher.]) + AC_MSG_WARN([The RPKI CA tools require Django 1.3 or higher.]) fi if test $have_vobject = no then |