diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2018-06-04 10:40:27 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2018-06-04 10:40:27 -0400 |
commit | baf00c2d75351de7a42dae32aea3a71c8902cd25 (patch) | |
tree | 930ec98d0fbcba02f50c4ada9a8221b8f97da27b /gdb/Makefile.in | |
parent | c12a5089640109567e2e06f0c5d2d1bf4fb3f5eb (diff) | |
download | binutils-gdb-baf00c2d75351de7a42dae32aea3a71c8902cd25.tar.gz |
Add configure.nat as a dependency of config.status
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.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index a0e5b7edba6..354a6361b76 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -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 |