diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-01-04 11:41:46 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-01-04 11:41:46 +0000 |
commit | c012723f3aaa312500c22a7243db20bc5ebc4b38 (patch) | |
tree | 62cd650fcd714415c8b268959b5e1f26ec4a39b6 /configure.in | |
parent | 9390445e42cb9365ef2618d1e9db3fe0fd96f6b6 (diff) | |
download | pam-c012723f3aaa312500c22a7243db20bc5ebc4b38.tar.gz pam-c012723f3aaa312500c22a7243db20bc5ebc4b38.tar.bz2 pam-c012723f3aaa312500c22a7243db20bc5ebc4b38.zip |
Relevant BUGIDs: report per email
Purpose of commit: bugfix
Commit summary:
---------------
Don't abort, if cracklib dictionaries were not found, but tell the
user that pam_cracklib will not be built.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 50ce85df..40f74b51 100644 --- a/configure.in +++ b/configure.in @@ -278,7 +278,7 @@ for d in $DICT_DIR_CANDIDATES ; do done done if test -z "$CRACKLIB_DICTPATH" ; then - AC_MSG_ERROR(none found) + AC_MSG_WARN([none found - pam_cracklib will not be built]) else AC_MSG_RESULT($CRACKLIB_DICTPATH) fi |