* Makefile.in (CFLAGS): Ensure that -MD is always added even when CFLAGS is
overwritten.
This commit is contained in:
parent
664b2d68eb
commit
3a71405fe2
|
@ -1,3 +1,8 @@
|
|||
Wed Sep 6 14:11:51 2000 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* Makefile.in (CFLAGS): Ensure that -MD is always added even when
|
||||
CFLAGS is overwritten.
|
||||
|
||||
Wed Sep 6 02:40:12 2000 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* path.cc (cwdstuff::get_initial): Keep caching alive.
|
||||
|
|
|
@ -50,7 +50,8 @@ DEFS = @DEFS@
|
|||
CC:=@CC@
|
||||
# FIXME: Which is it, CC or CC_FOR_TARGET?
|
||||
CC_FOR_TARGET:=$(CC)
|
||||
CFLAGS:=@CFLAGS@ -MD -fno-implement-inlines
|
||||
CFLAGS:=@CFLAGS@
|
||||
CFLAGS+=-MD
|
||||
CXXFLAGS:=@CXXFLAGS@
|
||||
|
||||
# For linking mount, etc. crt0.o isn't accessable in a fresh build.
|
||||
|
|
Loading…
Reference in New Issue