From 6c7b9784ddb17043c3268222025ada1288910eae Mon Sep 17 00:00:00 2001 From: Michael Ow Date: Thu, 28 Aug 2014 19:01:08 +0000 Subject: [PATCH] ICU-10406 Reorder flags setting to allow for user override in runConfigureICU script X-SVN-Rev: 36273 --- icu4c/source/runConfigureICU | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/icu4c/source/runConfigureICU b/icu4c/source/runConfigureICU index bc6ae8fd206..fada74180a1 100755 --- a/icu4c/source/runConfigureICU +++ b/icu4c/source/runConfigureICU @@ -388,7 +388,7 @@ then fi if test "$RELEASE_CFLAGS" != "" then - CFLAGS="$CFLAGS $RELEASE_CFLAGS" + CFLAGS="$RELEASE_CFLAGS $CFLAGS" fi if test "$RELEASE_CXXFLAGS" = "" then @@ -400,11 +400,11 @@ then fi if test "$RELEASE_CXXFLAGS" != "" then - CXXFLAGS="$CXXFLAGS $RELEASE_CXXFLAGS" + CXXFLAGS="$RELEASE_CXXFLAGS $CXXFLAGS" fi if test "$RELEASE_LDFLAGS" != "" then - LDFLAGS="$LDFLAGS $RELEASE_LDFLAGS" + LDFLAGS="$RELEASE_LDFLAGS $LDFLAGS" fi fi @@ -412,15 +412,15 @@ if test $debug -eq 1 then if test "$DEBUG_CFLAGS" != "" then - CFLAGS="$CFLAGS $DEBUG_CFLAGS" + CFLAGS="$DEBUG_CFLAGS $CFLAGS" fi if test "$DEBUG_CXXFLAGS" != "" then - CXXFLAGS="$CXXFLAGS $DEBUG_CXXFLAGS" + CXXFLAGS="$DEBUG_CXXFLAGS $CXXFLAGS" fi if test "$DEBUG_LDFLAGS" != "" then - LDFLAGS="$LDFLAGS $DEBUG_LDFLAGS" + LDFLAGS="$DEBUG_LDFLAGS $LDFLAGS" fi fi -- 2.40.0