diff options
author | Andrew Burgess <aburgess@redhat.com> | 2024-04-05 10:52:17 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2024-04-08 10:25:39 +0100 |
commit | cb1bef582e37d29281a5a5ebd99605d55afb16a0 (patch) | |
tree | d8a230c98a5c6174de8c48fc50233d40d53bfc20 /gdb | |
parent | 766f411f084bd6c9a224300bf946a1bfd583ab5f (diff) | |
download | gdb-cb1bef582e37d29281a5a5ebd99605d55afb16a0.zip gdb-cb1bef582e37d29281a5a5ebd99605d55afb16a0.tar.gz gdb-cb1bef582e37d29281a5a5ebd99605d55afb16a0.tar.bz2 |
gdb/Makefile: add some missing config.status dependencies
I noticed that for the build targets jit-reader.h, gcore, gdb-gdb.py,
and gdb-gdb.gdb the rules all use the config.status script, but don't
have a dependency on the config.status target. This means we might
fail to regenerate these targets in a case where config.status, or one
of its dependencies changes.
Two other targets that use config.status do correctly have a
dependency on config.status.
Fixed in this commit by adding the missing dependencies.
There should be no changes in _what_ is generated after this commit.
Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 9340bec..c1b3144 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2313,16 +2313,16 @@ Makefile: Makefile.in config.status run: Makefile ./gdb$(EXEEXT) --data-directory=`pwd`/data-directory $(GDBFLAGS) -jit-reader.h: $(srcdir)/jit-reader.in +jit-reader.h: $(srcdir)/jit-reader.in config.status $(SHELL) config.status $@ -gcore: $(srcdir)/gcore.in +gcore: $(srcdir)/gcore.in config.status $(SHELL) config.status $@ -gdb-gdb.py: $(srcdir)/gdb-gdb.py.in +gdb-gdb.py: $(srcdir)/gdb-gdb.py.in config.status $(SHELL) config.status $@ -gdb-gdb.gdb: $(srcdir)/gdb-gdb.gdb.in +gdb-gdb.gdb: $(srcdir)/gdb-gdb.gdb.in config.status $(SHELL) config.status $@ config.h: stamp-h ; @true |