diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3aa4333a63c..34d3a45a345 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-08-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * Makefile.in (dummy-conditions.o): Depend on $(HCONFIG_H) not + $(GCONFIG_H). + 2002-08-06 Aldy Hernandez <aldyh@redhat.com> * c-decl.c (duplicate_decls): Error out for incompatible TLS diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 0033c910086..17b62d7c43f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1705,7 +1705,7 @@ insn-conditions.o : insn-conditions.c $(GCONFIG_H) $(SYSTEM_H) $(RTL_H) \ hard-reg-set.h resource.h toplev.h reload.h gensupport.h insn-constants.h $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) insn-conditions.c -dummy-conditions.o : dummy-conditions.c $(GCONFIG_H) $(SYSTEM_H) gensupport.h +dummy-conditions.o : dummy-conditions.c $(HCONFIG_H) $(SYSTEM_H) gensupport.h $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \ $(srcdir)/dummy-conditions.c $(OUTPUT_OPTION) |