diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-02-05 07:00:08 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-02-05 07:00:08 +0000 |
commit | af3c610c3e63f9be8e33163c2a8063d1e295ea4f (patch) | |
tree | 44e3ac680eba3fbd6e3f09a88351a263df4cb28b /configure.in | |
parent | 547e42fc5cb7c0208eeb002809c3d270334af114 (diff) | |
download | pam-af3c610c3e63f9be8e33163c2a8063d1e295ea4f.tar.gz pam-af3c610c3e63f9be8e33163c2a8063d1e295ea4f.tar.bz2 pam-af3c610c3e63f9be8e33163c2a8063d1e295ea4f.zip |
Relevant BUGIDs: 130130
Purpose of commit: bugfix
Commit summary:
---------------
needed quotes around a possibly blank shell variable.
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 69831bfc..a1d501dc 100644 --- a/configure.in +++ b/configure.in @@ -229,7 +229,7 @@ for d in $DICT_DIR_CANDIDATES ; do fi done done -if test -z $CRACKLIB_DICTPATH ; then +if test -z "$CRACKLIB_DICTPATH" ; then AC_MSG_RESULT(none found) else AC_MSG_RESULT($CRACKLIB_DICTPATH) |