From 1913d92f25847a04170e0fec9dde37059cd4c95d Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Sat, 30 Oct 2010 20:58:37 +0300 Subject: configure: remove duplicated CFLAGS from DEPFLAGS The DEPFLAGS definition included the CFLAGS variable. All uses of DEPFLAGS in Makefile use CFLAGS too, so this resulted in duplicated options. Make DEPFLAGS contain "-MD -MP" only. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 3deaf7c94e..0a141d1851 100755 --- a/configure +++ b/configure @@ -2459,7 +2459,7 @@ else fi cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer" -cflag_check -MD -MP && DEPFLAGS="-MD -MP $CFLAGS" +cflag_check -MD -MP && DEPFLAGS="-MD -MP" if test -n "$LDFLAGS" ; then -- cgit v1.2.3