Add configure.nat as a dependency of config.status
authorSimon Marchi <simon.marchi@ericsson.com>
Mon, 4 Jun 2018 14:40:27 +0000 (10:40 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Mon, 4 Jun 2018 14:40:27 +0000 (10:40 -0400)
After pulling Alan's change that added aarch64-sve-linux-ptrace.o to
configure.nat, I got an undefined reference to aarch64_sve_get_vq when
doing a "make clean && make".  It turns out that re-running configure
(./config.status --recheck) was needed to re-generate the Makefile with
aarch64-sve-linux-ptrace.o included in the object list.  Putting
configure.nat in the dependencies of config.status would make sure that
when we modify configure.nat, the configure script is re-ran.  I think
it also makes sense because configure.tgt and configure.host are also
there.

gdb/ChangeLog:

* Makefile.in (config.status): Add configure.nat as a
dependency.

gdb/ChangeLog
gdb/Makefile.in

index e2f3618becaa3d1c6d1f754463caaf8e189f3391..330dc18db66aa2cbd9fd21ef152dfc89ac49bf28 100644 (file)
@@ -1,3 +1,8 @@
+2018-06-04  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * Makefile.in (config.status): Add configure.nat as a
+       dependency.
+
 2018-06-04  Tom Tromey  <tom@tromey.com>
 
        * cp-name-parser.y (cpname_state): Add method declarations.
index a0e5b7edba658349beef34f2eeec7ccb8b223e27..354a6361b76ca629c57462261c79b44dc11fa7d8 100644 (file)
@@ -2068,7 +2068,7 @@ stamp-h: $(srcdir)/config.in config.status
          CONFIG_LINKS= \
          $(SHELL) config.status
 
-config.status: $(srcdir)/configure configure.tgt configure.host ../bfd/development.sh
+config.status: $(srcdir)/configure configure.nat configure.tgt configure.host ../bfd/development.sh
        $(SHELL) config.status --recheck
 
 ACLOCAL = aclocal
This page took 0.039166 seconds and 4 git commands to generate.