diff mbox

[2/2] validation: configure: move cflags guards to test/m4

Message ID 1460035065-8416-2-git-send-email-maxim.uvarov@linaro.org
State Superseded
Headers show

Commit Message

Maxim Uvarov April 7, 2016, 1:17 p.m. UTC
Move cflags guards to test/m4 to fix cunit
library search.
https://bugs.linaro.org/show_bug.cgi?id=2161

Reported-by: Brian Brooks <brian.brooks@linaro.org>
Suggested-by: Anders Roxell <anders.roxell@linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
---
 configure.ac          | 14 --------------
 test/m4/validation.m4 | 14 ++++++++++++++
 2 files changed, 14 insertions(+), 14 deletions(-)
diff mbox

Patch

diff --git a/configure.ac b/configure.ac
index 712d241..9665d1d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -176,20 +176,6 @@  AC_ARG_ENABLE([debug],
 ODP_CFLAGS="$ODP_CFLAGS -DODP_DEBUG=$ODP_DEBUG"
 
 ##########################################################################
-# Save and set temporary compilation flags
-##########################################################################
-OLD_LDFLAGS=$LDFLAGS
-OLD_CPPFLAGS=$CPPFLAGS
-LDFLAGS="$AM_LDFLAGS $LDFLAGS"
-CPPFLAGS="$AM_CPPFLAGS $CPPFLAGS"
-
-##########################################################################
-# Restore old saved variables
-##########################################################################
-LDFLAGS=$OLD_LDFLAGS
-CPPFLAGS=$OLD_CPPFLAGS
-
-##########################################################################
 # Default warning setup
 ##########################################################################
 ODP_CFLAGS="$ODP_CFLAGS -W -Wall -Werror -Wstrict-prototypes -Wmissing-prototypes"
diff --git a/test/m4/validation.m4 b/test/m4/validation.m4
index f6c93f7..22021d3 100644
--- a/test/m4/validation.m4
+++ b/test/m4/validation.m4
@@ -31,6 +31,14 @@  AC_HELP_STRING([--with-cunit-path=DIR   path to CUnit libs and headers],
     cunit_support=yes],[])
 
 ##########################################################################
+# Save and set temporary compilation flags
+##########################################################################
+OLD_LDFLAGS=$LDFLAGS
+OLD_CPPFLAGS=$CPPFLAGS
+LDFLAGS="$AM_LDFLAGS $LDFLAGS"
+CPPFLAGS="$AM_CPPFLAGS $CPPFLAGS"
+
+##########################################################################
 # Check for CUnit availability
 ##########################################################################
 if test x$cunit_support = xyes -a -z "$CUNIT_PATH"
@@ -46,3 +54,9 @@  else
         AM_LDFLAGS="$AM_LDFLAGS -lcunit"
     fi
 fi
+
+##########################################################################
+# Restore old saved variables
+##########################################################################
+LDFLAGS=$OLD_LDFLAGS
+CPPFLAGS=$OLD_CPPFLAGS