From: Simon Marchi Date: Mon, 21 Nov 2016 21:05:57 +0000 (-0500) Subject: Add missing POSTCOMPILE step to mi/ file generation rules X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d0de53e251ce60057d91536a4c71740b047be040;p=binutils-gdb.git Add missing POSTCOMPILE step to mi/ file generation rules A little oversight from my part, it caused the Makefile not to track the dependencies from mi/*.c files. gdb/ChangeLog: * Makefile.in (%o: $(srcdir)/mi/%.c): Add missing POSTCOMPILE step. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 768a1b33af7..dfaddd1916a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2016-11-21 Simon Marchi + + * Makefile.in (%o: $(srcdir)/mi/%.c): Add missing POSTCOMPILE + step. + 2016-11-21 Yao Qi * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer): diff --git a/gdb/Makefile.in b/gdb/Makefile.in index b68cf58ac04..3ea47a7d757 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1160,6 +1160,7 @@ all: gdb$(EXEEXT) $(CONFIG_ALL) %.o: $(srcdir)/mi/%.c $(COMPILE) $< + $(POSTCOMPILE) %.o: ${srcdir}/nat/%.c $(COMPILE) $<