This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
attribs.o dependency fix
- From: Geoffrey Keating <geoffk at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Tue, 13 Aug 2002 16:03:37 -0700
- Subject: attribs.o dependency fix
I think Zack noticed this.
Bootstrapped & tested on x86-linux.
--
Geoff Keating <geoffk@redhat.com>
===File ~/patches/gcc-attribdeps.patch======================
2002-08-06 Geoffrey Keating <geoffk@redhat.com>
* Makefile.in (attribs.o): Remove $(OBSTACK_H) dependency.
Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.926
diff -p -u -p -r1.926 Makefile.in
--- Makefile.in 7 Aug 2002 01:57:38 -0000 1.926
+++ Makefile.in 13 Aug 2002 23:02:54 -0000
@@ -1235,7 +1235,7 @@ c-pretty-print.o : c-pretty-print.c c-pr
# A file used by all variants of C and some other languages.
-attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(OBSTACK_H) flags.h \
+attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h \
toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) $(EXPR_H) $(TM_P_H) \
builtin-types.def $(TARGET_H) langhooks.h
============================================================