aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/configure.ac
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@soleta.eu>2014-09-01 09:34:07 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-09-01 18:35:15 +0200
commit922401085946ad4498cc011219b1dbf78579aa18 (patch)
tree900216b6354b41b14366b9b4e1ce6f652f00fc60 /openbsc/configure.ac
parent08726e283754720aa97670a33366cf82de220b93 (diff)
configure: fix unrecognized option --enable-external-tests
./configure --help indicates: --enable-external-tests Include the VTY/CTRL tests in make check [default=no] but ./configure ... --enable-external-tests configure: WARNING: unrecognized options: --enable-external-tests the name of the option seems to be --enable-ext-tests.
Diffstat (limited to 'openbsc/configure.ac')
-rw-r--r--openbsc/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/configure.ac b/openbsc/configure.ac
index 0777c0de2..40ee444aa 100644
--- a/openbsc/configure.ac
+++ b/openbsc/configure.ac
@@ -141,7 +141,7 @@ AC_ARG_ENABLE([vty_tests],
[Include the VTY/CTRL tests in make check (deprecated)
[default=no]]),
[enable_ext_tests="$enableval"],[enable_ext_tests="no"])
-AC_ARG_ENABLE([ext_tests],
+AC_ARG_ENABLE([external_tests],
AC_HELP_STRING([--enable-external-tests],
[Include the VTY/CTRL tests in make check [default=no]]),
[enable_ext_tests="$enableval"],[enable_ext_tests="no"])