diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-05 19:15:33 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-01-05 19:15:33 +0000 |
commit | 6ad60029a3343cf2acbfd765011e2e141e99d1cf (patch) | |
tree | 2b8bc102bdaee03fceb3098dc74cc4f0887c39d9 | |
parent | 1980d7b270ad5133f72be8c2644595f29198c4c4 (diff) | |
download | gcc-6ad60029a3343cf2acbfd765011e2e141e99d1cf.tar.gz |
* Make-lang.in (g77.o): Depend on prefix.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24500 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/f/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/f/Make-lang.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog index 624de916e47..00790ebe522 100644 --- a/gcc/f/ChangeLog +++ b/gcc/f/ChangeLog @@ -1,3 +1,7 @@ +Tue Jan 5 22:12:41 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * Make-lang.in (g77.o): Depend on prefix.h. + Fri Nov 27 13:10:32 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * fini.c: Rename variable `spaces' to `xspaces' to avoid diff --git a/gcc/f/Make-lang.in b/gcc/f/Make-lang.in index 8544f1ca3c7..df0a0a92fce 100644 --- a/gcc/f/Make-lang.in +++ b/gcc/f/Make-lang.in @@ -92,7 +92,7 @@ g77version.o: $(srcdir)/f/version.c # It'd be nice if we could find an easier way to do this---rather than have # to track changes to the toplevel gcc Makefile as well. # We depend on g77.c last, to make it obvious where it came from. -g77.o: $(CONFIG_H) multilib.h config.status $(lang_specs_files) g77.c +g77.o: $(CONFIG_H) multilib.h config.status $(lang_specs_files) g77.c prefix.h case "$(LANGUAGES)" in \ *[fF]77*) touch lang-f77;; \ *) rm -f lang-f77;; \ |