From d7efc942774f45daa290d7772b76f66159d4d8c0 Mon Sep 17 00:00:00 2001 From: Thomas Amland Date: Thu, 19 Feb 2015 15:53:36 +0100 Subject: [PATCH] [linux] prepend -Wall so it doesn't override flags from environment --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 4439eb66c58a1..3b8b4501f2428 100644 --- a/configure.in +++ b/configure.in @@ -789,8 +789,8 @@ else DEBUG_FLAGS="-DNDEBUG=1" fi fi -CFLAGS="$CFLAGS $DEBUG_FLAGS" -CXXFLAGS="$CXXFLAGS $DEBUG_FLAGS" +CFLAGS="$DEBUG_FLAGS $CFLAGS" +CXXFLAGS="$DEBUG_FLAGS $CXXFLAGS" if test "$use_optimizations" = "yes"; then