diff options
author | Tom Tromey <tom@tromey.com> | 2021-06-05 09:04:51 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-06-05 09:04:51 -0600 |
commit | 19d6d783e1f76027fa9dc1f14658a157f582334a (patch) | |
tree | e6093c41395a0ceeefe7b734e62f0e0a1c0e7ef0 /gdb/data-directory/Makefile.in | |
parent | b316465fab75c1fa1ae2ace63dc2005f65722307 (diff) | |
download | fsf-binutils-gdb-19d6d783e1f76027fa9dc1f14658a157f582334a.zip fsf-binutils-gdb-19d6d783e1f76027fa9dc1f14658a157f582334a.tar.gz fsf-binutils-gdb-19d6d783e1f76027fa9dc1f14658a157f582334a.tar.bz2 |
Fix gdb/data-directory Makefile-regeneration rule
My recent changes to the gdb build removed a special case for
data-directory/Makefile, but neglected to update the rule in that
Makefile. This patch fixes the error by rewriting this rule.
gdb/ChangeLog
2021-06-05 Tom Tromey <tom@tromey.com>
* data-directory/Makefile.in (Makefile): Rewrite.
Diffstat (limited to 'gdb/data-directory/Makefile.in')
-rw-r--r-- | gdb/data-directory/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/data-directory/Makefile.in b/gdb/data-directory/Makefile.in index 8b65790..e1f3cd2 100644 --- a/gdb/data-directory/Makefile.in +++ b/gdb/data-directory/Makefile.in @@ -411,7 +411,7 @@ clean-info: MAKEOVERRIDES= Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(MAKE) data-directory/Makefile + cd .. && $(SHELL) ./config.status testsuite/Makefile # Disable implicit make rules. include $(srcdir)/../disable-implicit-rules.mk |