aboutsummaryrefslogtreecommitdiff
path: root/helper
diff options
context:
space:
mode:
authorStanislaw Kardach <skardach@marvell.com>2020-09-03 15:34:33 +0200
committerMatias Elo <matias.elo@nokia.com>2020-09-07 13:38:00 +0300
commit8d3c458848294495a1e7a45846d659a384ab69e3 (patch)
treed56d5a8b537041bfd444a7d76db3ef5f956b84fe /helper
parent4394b1b1f33159bad4f71bc46fd405a6a948c96a (diff)
build: re-format autoconf argument defaults
Make sure that all autoconf arguments defined by ODP use default value description similar to built-in arguments. That is: [default=<value>]. Also make sure that all arguments use AS_HELP_STRING for uniform text formatting. Signed-off-by: Stanislaw Kardach <skardach@marvell.com> Reviewed-by: Matias Elo <matias.elo@nokia.com>
Diffstat (limited to 'helper')
-rw-r--r--helper/m4/configure.m46
1 files changed, 4 insertions, 2 deletions
diff --git a/helper/m4/configure.m4 b/helper/m4/configure.m4
index 5f6ae0008..c25f8fe68 100644
--- a/helper/m4/configure.m4
+++ b/helper/m4/configure.m4
@@ -2,7 +2,8 @@
# Enable/disable test-helper
##########################################################################
AC_ARG_ENABLE([test-helper],
- [AS_HELP_STRING([--enable-test-helper], [run test in helper/test])],
+ [AS_HELP_STRING([--enable-test-helper],
+ [run test in helper/test [default=enabled]])],
[test_helper=$enableval],
[test_helper=yes])
AM_CONDITIONAL([test_helper], [test x$test_helper = xyes ])
@@ -11,7 +12,8 @@ AM_CONDITIONAL([test_helper], [test x$test_helper = xyes ])
# Enable/disable Linux helpers
##########################################################################
AC_ARG_ENABLE([helper-linux],
- [AS_HELP_STRING([--disable-helper-linux], [disable Linux helpers])],
+ [AS_HELP_STRING([--disable-helper-linux],
+ [disable Linux helpers [default=enabled]])],
[helper_linux=$enableval],
[helper_linux=yes])