diff options
author | H. Peter Anvin <hpa@zytor.com> | 2000-08-10 21:53:56 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2000-08-10 21:53:56 +0000 |
commit | 91999baf5b4707f3550aae03a2a6e68a55c5c8b9 (patch) | |
tree | 8e405db65fd37d6bbb9c1e80c0ce31de40d064dd | |
parent | 8d4ec6634014aa8a88616e5d01e85ca23d3d133c (diff) | |
download | autofs3-91999baf5b4707f3550aae03a2a6e68a55c5c8b9.tar.gz autofs3-91999baf5b4707f3550aae03a2a6e68a55c5c8b9.tar.xz autofs3-91999baf5b4707f3550aae03a2a6e68a55c5c8b9.zip |
Fix silly typo.
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 531d0d0..6f6ea48 100644 --- a/configure.in +++ b/configure.in @@ -64,7 +64,7 @@ AC_ARG_WITH(hesiod, if test "$withval" = no then HAVE_HESIOD=0 # Disable - elif -o "$withval" = yes -o -z "$withval" + elif test -z "$withval" -o "$withval" = 'yes' then : Search for Hesiod in normal directory path else |