autofs-5.1.0 - fix typo in flagdir configure option From: Michael Tokarev This problem was originally reported, and a patch offered, by Michael Tokarev but was inadvertantly missed, so the change is credited to him in retrospect. --- CHANGELOG | 1 + configure | 2 +- configure.in | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 2b7d55a..519fea3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -29,6 +29,7 @@ - fix out of order clearing of options buffer. - fix reset amd lexer scan buffer. - ignore multiple commas in options strings. +- fix typo in flagdir configure option. 04/06/2014 autofs-5.1.0 ======================= diff --git a/configure b/configure index dcb82cd..2349bf9 100755 --- a/configure +++ b/configure @@ -2381,7 +2381,7 @@ if test "${with_flagdir+set}" = set; then : then : else - filagdir="${withval}" + flagdir="${withval}" fi fi diff --git a/configure.in b/configure.in index cd3e7a3..b92f3c5 100644 --- a/configure.in +++ b/configure.in @@ -114,7 +114,7 @@ AC_ARG_WITH(flagdir, then : else - filagdir="${withval}" + flagdir="${withval}" fi ) AC_MSG_CHECKING([for autofs flag file directory])