From 922401085946ad4498cc011219b1dbf78579aa18 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Mon, 1 Sep 2014 09:34:07 +0200 Subject: [PATCH] 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. --- openbsc/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"])