diff mbox series

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

Message ID 1516204951-15461-2-git-send-email-odpbot@yandex.ru
State Superseded
Headers show
Series [v4,1/1] configure: enable linux helpers by default | expand

Commit Message

Github ODP bot Jan. 17, 2018, 4:02 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: 520c170d758f2d37554631bf1467ec50e027cd3e
 ** Merge commit sha: 22cd65d1a6ad6b542bacef10af80a6306bdfeaf6
 **/
 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..5b5172e20 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([--enable-helper-linux], [enable Linux helpers [default=yes]])],
+    [helper_linux=$enableval],
+    [helper_linux=yes])
 
 AC_CONFIG_FILES([helper/Makefile
 		 helper/libodphelper.pc