diff mbox

configure: fix unrecognized option --enable-external-tests

Message ID 1409556847-20398-1-git-send-email-pablo@gnumonks.org
State Accepted
Headers show

Commit Message

Pablo Neira Ayuso Sept. 1, 2014, 7:34 a.m. UTC
From: Pablo Neira Ayuso <pablo@soleta.eu>

./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(-)

Comments

Holger Freyther Sept. 1, 2014, 4:36 p.m. UTC | #1
On Mon, Sep 01, 2014 at 09:34:07AM +0200, pablo@gnumonks.org wrote:
> From: Pablo Neira Ayuso <pablo@soleta.eu>

oops! thanks!
diff mbox

Patch

diff --git a/openbsc/configure.ac b/openbsc/configure.ac
index 0777c0d..40ee444 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"])