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]
Other format: [Raw text]

PATCH committed: correct dependency in config/i386/x-cygwin


This patch corrects the dependency in config/i386/x-cygwin to use
$(HOSTHOOKS_DEF_H) instead of hosthooks-def.h.  This corrects a
missing dependency in a parallel build.

Tested here:
    http://gcc.gnu.org/ml/gcc/2005-08/msg00884.html

Committed as obvious.

Ian


2005-08-30  Ian Lance Taylor  <ian@airs.com>

	* config/i386/x-cygwin (host-cygwin): Change dependency from
	hosthooks-def.h to $(HOSTHOOKS_DEF_H).


Index: config/i386/x-cygwin
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/i386/x-cygwin,v
retrieving revision 1.5
diff -u -r1.5 x-cygwin
--- config/i386/x-cygwin	7 Mar 2005 22:42:42 -0000	1.5
+++ config/i386/x-cygwin	30 Aug 2005 21:25:07 -0000
@@ -1,4 +1,4 @@
 host-cygwin.o : $(srcdir)/config/i386/host-cygwin.c $(CONFIG_H) $(SYSTEM_H) \
-  coretypes.h hosthooks.h hosthooks-def.h toplev.h diagnostic.h
+  coretypes.h hosthooks.h $(HOSTHOOKS_DEF_H) toplev.h diagnostic.h
 	$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
 		$(srcdir)/config/i386/host-cygwin.c


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