On Jul 19, 2012, at 11:24 AM, Richard Henderson wrote:
> +# genopinit produces two files.
> +insn-opinit.c insn-opinit.h: s-opinit ; @true
> +s-opinit: $(MD_DEPS) build/genopinit$(build_exeext) insn-conditions.md
> +     $(RUN_GEN) build/genopinit$(build_exeext) $(md_file) \
> +       insn-conditions.md -htmp-opinit.h -ctmp-opinit.c
> +     $(SHELL) $(srcdir)/../move-if-change tmp-opinit.h insn-opinit.h
> +     $(SHELL) $(srcdir)/../move-if-change tmp-opinit.c insn-opinit.c
> +     $(STAMP) s-opinit

Breaks my port without the attached patch...

diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 67f1d66..bd31c9b 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -3484,7 +3484,7 @@ s-attrtab : $(MD_DEPS) build/genattrtab$(build_exeext) \
 # genopinit produces two files.
 insn-opinit.c insn-opinit.h: s-opinit ; @true
 s-opinit: $(MD_DEPS) build/genopinit$(build_exeext) insn-conditions.md
-       $(RUN_GEN) build/genopinit$(build_exeext) $(md_file) \
+       $(RUN_GEN) build/genopinit$(build_exeext) $(MD_INCS) $(md_file) \
          insn-conditions.md -htmp-opinit.h -ctmp-opinit.c
        $(SHELL) $(srcdir)/../move-if-change tmp-opinit.h insn-opinit.h
        $(SHELL) $(srcdir)/../move-if-change tmp-opinit.c insn-opinit.c

Reply via email to