This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A Makefile.in patch


Hi,

This fixed the build warning:

make[3]: Circular gencheck <- tree-check.h dependency dropped.

gencheck.c only includes tree.def, not tree.h.

-- 
H.J. Lu (hjl@gnu.org)
--
Sat Jun 27 13:29:07 1998  H.J. Lu  (hjl@gnu.org)

	* Makefile.in (gencheck): Change $(TREE_H) to tree.def.

Index: Makefile.in
===================================================================
RCS file: /home/work/cvs/gnu/egcs/gcc/Makefile.in,v
retrieving revision 1.1.1.60
diff -u -r1.1.1.60 Makefile.in
--- Makefile.in	1998/06/27 15:36:08	1.1.1.60
+++ Makefile.in	1998/06/27 20:26:36
@@ -1339,7 +1341,7 @@
 	$(srcdir)/move-if-change tmp-check.h tree-check.h
 	touch s-check
 
-gencheck : gencheck.o $(TREE_H) $(HOST_LIBDEPS)
+gencheck : gencheck.o tree.def $(HOST_LIBDEPS)
 	$(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
 	 gencheck.o $(HOST_LIBS)
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]