diff options
author | Gabriel Dos Reis <gdr@codesourcery.com> | 2000-07-12 20:05:45 +0000 |
---|---|---|
committer | Gabriel Dos Reis <gdr@gcc.gnu.org> | 2000-07-12 20:05:45 +0000 |
commit | 8364301f5a1725e900f4554f5d9358146c804ee3 (patch) | |
tree | 036bd846a4171d3b6086c1a0099954c217c081fe /gcc | |
parent | f5896af2a6c84e23a0f159ee350ed8d4287bf3ca (diff) | |
download | gcc-8364301f5a1725e900f4554f5d9358146c804ee3.zip gcc-8364301f5a1725e900f4554f5d9358146c804ee3.tar.gz gcc-8364301f5a1725e900f4554f5d9358146c804ee3.tar.bz2 |
Makefile.in (c-errors.o): Fix thinko in dependency.
2000-07-12 Gabriel Dos Reis <gdr@codesourcery.com>
* Makefile.in (c-errors.o): Fix thinko in dependency.
From-SVN: r34996
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3d8a17e..2f44e35a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-07-12 Gabriel Dos Reis <gdr@codesourcery.com> + + * Makefile.in (c-errors.o): Fix thinko in dependency. + 2000-07-12 Zack Weinberg <zack@wolery.cumb.org> * gcc.c (C specs [!USE_CPPLIB]): Invoke tradcpp if any of diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 14886b8..97d1736 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1067,8 +1067,8 @@ s-crt0: $(CRT0_S) $(MCRT0_S) $(GCC_PASSES) $(CONFIG_H) # C language specific files. -c-errors.o: $(srcdir)/c-errors.c $(CONFIG_H) system.h $(TREE_H) c-tree.h \ - flags.h diagnostic.h +c-errors.o: c-errors.c $(CONFIG_H) system.h $(TREE_H) c-tree.h flags.h \ + diagnostic.h c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h $(GGC_H) \ $(srcdir)/c-parse.h c-tree.h c-common.h input.h flags.h system.h \ toplev.h output.h |