configure: replace unwarranted gcc bashing with a real explanation

Originally committed as revision 23929 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2010-07-01 11:11:23 +00:00
parent 4bbb3e3a9d
commit a158446b28

4
configure vendored
View File

@ -1459,8 +1459,8 @@ host_libs='-lm'
target_path='$(CURDIR)' target_path='$(CURDIR)'
# gcc stupidly only outputs the basename of targets with -MM, but we need the # since the object filename is not given with the -MM flag, the compiler
# full relative path for objects in subdirectories for non-recursive Make. # is only able to print the basename, and we must add the path ourselves
DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)' DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -MM' DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -MM'