aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-06-25 03:00:58 +0200
committerHarald Welte <laforge@gnumonks.org>2010-06-25 03:00:58 +0200
commit1067e8cc9a5d4f28f986f7473093cbac874d4208 (patch)
treef571541c7baf47b752a1dbc1437de2a7fe4b9a3c
parent816e24cb4296d6b7110da4a89661bbac8dc7af21 (diff)
Fix typo in configure script regarding --disable-vty
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index cc8fdf61..b5eea6b1 100644
--- a/configure.in
+++ b/configure.in
@@ -44,7 +44,7 @@ AC_ARG_ENABLE(tests,
[enable_tests=0], [enable_tests=1])
AM_CONDITIONAL(ENABLE_TESTS, test "x$enable_tests" = "x1")
-AC_ARG_ENABLE(vtyc,
+AC_ARG_ENABLE(vty,
[ --disable-vty Disable building VTY telnet interface ],
[enable_vty=0], [enable_vty=1])
AM_CONDITIONAL(ENABLE_VTY, test "x$enable_vty" = "x1")