diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 1 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 25d12103347..630a118ae98 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,7 @@ 2007-09-04 Ben Elliston <bje@au.ibm.com> * c-opts.c: Include "tm_p.h". + * Makefile.in (c-opts.o): Add $(TM_P_H) as a dependency. 2007-09-04 Richard Guenther <rguenther@suse.de> diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 5648fcc8c92..1979b72e6d0 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1795,7 +1795,7 @@ c-pretty-print.o : c-pretty-print.c $(C_PRETTY_PRINT_H) \ c-opts.o : c-opts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ $(TREE_H) $(C_PRAGMA_H) $(FLAGS_H) toplev.h langhooks.h \ $(TREE_INLINE_H) $(DIAGNOSTIC_H) intl.h debug.h $(C_COMMON_H) \ - opts.h options.h $(MKDEPS_H) c-incpath.h cppdefault.h + opts.h options.h $(MKDEPS_H) c-incpath.h cppdefault.h $(TM_P_H) $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) \ $< $(OUTPUT_OPTION) @TARGET_SYSTEM_ROOT_DEFINE@ |