diff options
author | 2007-11-28 13:16:55 +0000 | |
---|---|---|
committer | 2007-11-28 13:16:55 +0000 | |
commit | b6e06dcd445c8e7f091429a559c9f7d90c4064dc (patch) | |
tree | ab9c9453dba7b867c6a42ba0625e1d472c6b7cde | |
parent | history section is totally wrong (diff) | |
download | wireguard-openbsd-b6e06dcd445c8e7f091429a559c9f7d90c4064dc.tar.xz wireguard-openbsd-b6e06dcd445c8e7f091429a559c9f7d90c4064dc.zip |
add dependencies for protector.o, preventing it from being built too early.
Okay miod@
-rw-r--r-- | gnu/usr.bin/gcc/gcc/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/usr.bin/gcc/gcc/Makefile.in b/gnu/usr.bin/gcc/gcc/Makefile.in index a356e5e9ccb..3beb6c43d51 100644 --- a/gnu/usr.bin/gcc/gcc/Makefile.in +++ b/gnu/usr.bin/gcc/gcc/Makefile.in @@ -1676,7 +1676,10 @@ ifcvt.o : ifcvt.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) toplev.h \ output.h except.h $(TM_P_H) real.h params.o : params.c $(CONFIG_H) $(SYSTEM_H) $(PARAMS_H) toplev.h hooks.o: hooks.c $(CONFIG_H) $(SYSTEM_H) $(HOOKS_H) -protector.o: protector.c $(CONFIG_H) +protector.o: protector.c $(CONFIG_H) insn-config.h flags.h $(RTL_H) \ + $(TREE_H) $(EXPR_H) $(REGS_H) $(RECOG_H) $(INSN_ATTR_H) \ + $(C_TREE_H) real.h output.h except.h + $(out_object_file): $(out_file) $(CONFIG_H) $(TREE_H) $(GGC_H) \ $(RTL_H) $(REGS_H) hard-reg-set.h real.h insn-config.h conditions.h \ |