diff options
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5ac55b6..82d9c19 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-05-29 H.J. Lu <hongjiu.lu@intel.com> + + PR bootstrap/44315 + * Makefile.in (build/gencondmd.o): Add a missing `\'. + 2010-05-29 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> PR target/44261 @@ -31,6 +36,7 @@ 2010-05-29 Mike Stump <mikestump@comcast.net> + PR bootstrap/44315 * Makefile.in (build/gencondmd.o): Be sure to use GTM_H instead of TM_H when building to avoid dependency loops. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 344062b..cb432cb 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3748,7 +3748,7 @@ build/rtl.o: rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) \ $(RTL_H) $(GGC_H) errors.h build/vec.o : vec.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(VEC_H) \ $(GGC_H) $(TOPLEV_H) -build/gencondmd.o : +build/gencondmd.o : \ TM_H := $(GTM_H) build/gencondmd.o : build/gencondmd.c $(BCONFIG_H) $(SYSTEM_H) \ coretypes.h $(GTM_H) insn-constants.h $(RTL_H) $(TM_P_H) \ |