diff options
author | Rob Austein <sra@hactrn.net> | 2012-05-02 20:43:59 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2012-05-02 20:43:59 +0000 |
commit | 88e404f1e303fc9e4b4439f301f29fc66643c21e (patch) | |
tree | 4ae1a3a90939a161a5930e85b2ce5f2aac224c4f | |
parent | e65d3153ca2a13e57aa2460e037d51053f6e415a (diff) |
Case error in advisory test.
svn path=/trunk/; revision=4457
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -4260,7 +4260,7 @@ $as_echo "$have_acceptable_django" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PyYAML" >&5 $as_echo_n "checking for PyYAML... " >&6; } - if $PYTHON -c 'import YAML' 2>/dev/null + if $PYTHON -c 'import yaml' 2>/dev/null then have_pyyaml=yes fi diff --git a/configure.ac b/configure.ac index 002542ac..cab2685e 100644 --- a/configure.ac +++ b/configure.ac @@ -283,7 +283,7 @@ then fi AC_MSG_CHECKING([for PyYAML]) - if $PYTHON -c 'import YAML' 2>/dev/null + if $PYTHON -c 'import yaml' 2>/dev/null then have_pyyaml=yes fi |