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.
This commit is contained in:
Uoti Urpala 2010-10-30 20:58:37 +03:00
parent 14ff4026c2
commit 1913d92f25
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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