diff mbox series

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

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

Commit Message

Github ODP bot Jan. 16, 2018, 3 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: ad696421af2891386cb09db1ae2ea33888bf5664
 **/
 helper/m4/configure.m4 | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)
diff mbox series

Patch

diff --git a/helper/m4/configure.m4 b/helper/m4/configure.m4
index 3a867e8cb..eb9ed8d02 100644
--- a/helper/m4/configure.m4
+++ b/helper/m4/configure.m4
@@ -8,14 +8,13 @@  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
+helper_linux=yes
 AC_ARG_ENABLE([helper-linux],
-	[  --enable-helper-linux	build helper platform extensions (not portable)],
-	[if test "x$enableval" = "xyes"; then
-		helper_linux=yes
+	[  --enable-helper-linux   enable Linux helpers],
+	[if test "x$enableval" = "xno"; then
+		helper_linux=no
 	fi])
 
 AC_CONFIG_FILES([helper/Makefile