aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-08-03 14:46:00 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-10 13:05:35 -0500
commit1156c669b6f124572ba206dfe7419f7c63cb9b59 (patch)
tree5579623a9a8f45de064e19520c05cb8604e87536 /configure
parente86ecd4bd919f76a21c6276a26b9cfc1c82f47f5 (diff)
We want to add options at the beggining, not at the end of variables
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Message-Id:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure14
1 files changed, 7 insertions, 7 deletions
diff --git a/configure b/configure
index 643edd28f..4cee68156 100755
--- a/configure
+++ b/configure
@@ -1415,12 +1415,12 @@ fi
# After here, no more $cc or $ld runs
# default flags for all hosts
-CFLAGS="$CFLAGS -g -fno-strict-aliasing"
+CFLAGS="-g -fno-strict-aliasing $CFLAGS"
if test "$debug" = "no" ; then
- CFLAGS="$CFLAGS -O2"
+ CFLAGS="-O2 $CFLAGS"
fi
-CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
-LDFLAGS="$LDFLAGS -g"
+CFLAGS="-Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls $CFLAGS"
+LDFLAGS="-g $LDFLAGS"
# Consult white-list to determine whether to enable werror
# by default. Only enable by default for git builds
@@ -1435,12 +1435,12 @@ if test -z "$werror" ; then
fi
if test "$werror" = "yes" ; then
- CFLAGS="$CFLAGS -Werror"
+ CFLAGS="-Werror $CFLAGS"
fi
if test "$solaris" = "no" ; then
if $ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
- LDFLAGS="$LDFLAGS -Wl,--warn-common"
+ LDFLAGS="-Wl,--warn-common $LDFLAGS"
fi
fi
@@ -1598,7 +1598,7 @@ if test "$gprof" = "yes" ; then
fi
if test "$static" = "yes" ; then
echo "CONFIG_STATIC=y" >> $config_host_mak
- LDFLAGS="$LDFLAGS -static"
+ LDFLAGS="-static $LDFLAGS"
fi
if test $profiler = "yes" ; then
echo "CONFIG_PROFILER=y" >> $config_host_mak