diff mbox series

[v5,1/1] configure: enable linux helpers by default

Message ID 1516284062-2723-2-git-send-email-odpbot@yandex.ru
State New
Headers show
Series [v5,1/1] configure: enable linux helpers by default | expand

Commit Message

Github ODP bot Jan. 18, 2018, 2:01 p.m. UTC
From: Petri Savolainen <petri.savolainen@linaro.org>


Enable Linux helpers by default as e.g. OFP uses those. Build
and test helper code does not add significant overhead, but
catches potential issues early.

Signed-off-by: Petri Savolainen <petri.savolainen@linaro.org>

---
/** Email created from pull request 395 (psavol:master-enable-helper-linux)
 ** https://github.com/Linaro/odp/pull/395
 ** Patch: https://github.com/Linaro/odp/pull/395.patch
 ** Base sha: 1bb6291e4e9050d476fefb02f11024898847e2b7
 ** Merge commit sha: 5455b9a715070ad1d62f590b16ee23fe069ac734
 **/
 helper/m4/configure.m4 | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)
diff mbox series

Patch

diff --git a/helper/m4/configure.m4 b/helper/m4/configure.m4
index 3a867e8cb..562bfc6ef 100644
--- a/helper/m4/configure.m4
+++ b/helper/m4/configure.m4
@@ -8,15 +8,12 @@  AC_ARG_ENABLE([test-helper],
 AM_CONDITIONAL([test_helper], [test x$test_helper = xyes ])
 
 ##########################################################################
-# Enable/disable helper-ext
-# platform specific non portable extensions
+# Enable/disable Linux helpers
 ##########################################################################
-helper_linux=no
 AC_ARG_ENABLE([helper-linux],
-	[  --enable-helper-linux	build helper platform extensions (not portable)],
-	[if test "x$enableval" = "xyes"; then
-		helper_linux=yes
-	fi])
+    [AS_HELP_STRING([--disable-helper-linux], [disable Linux helpers])],
+    [helper_linux=$enableval],
+    [helper_linux=yes])
 
 AC_CONFIG_FILES([helper/Makefile
 		 helper/libodphelper.pc