diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/Makefile.in | 8 |
2 files changed, 5 insertions, 8 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 87e2a13..1ca03b4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2021-06-01 Tom Tromey <tromey@adacore.com> + * Makefile.in (all-data-directory): Remove. + (data-directory/Makefile): Remove. + +2021-06-01 Tom Tromey <tromey@adacore.com> + * configure: Rebuild. * configure.ac: Use AS_HELP_STRING for enable-shared. Fix typo. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index f66f437..f664d96 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1886,11 +1886,6 @@ ifneq ($(CODESIGN_CERT),) $(ECHO_SIGN) $(CODESIGN) -s $(CODESIGN_CERT) gdb$(EXEEXT) endif -# Convenience rule to handle recursion. -.PHONY: all-data-directory -all-data-directory: data-directory/Makefile - @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=data-directory subdir_do - # This is useful when debugging GDB, because some Unix's don't let you run GDB # on itself without copying the executable. So "make gdb1" will make # gdb and put a copy in gdb1, and you can run it with "gdb gdb1". @@ -1990,9 +1985,6 @@ subdir_do: force Makefile: Makefile.in config.status $(SHELL) config.status $@ -data-directory/Makefile: data-directory/Makefile.in config.status - $(SHELL) config.status $@ - .PHONY: run run: Makefile ./gdb$(EXEEXT) --data-directory=`pwd`/data-directory $(GDBFLAGS) |