Remove config.cache in gdbserver's "distclean"
authorTom Tromey <tromey@adacore.com>
Tue, 16 Nov 2021 16:11:41 +0000 (09:11 -0700)
committerTom Tromey <tromey@adacore.com>
Tue, 16 Nov 2021 16:13:24 +0000 (09:13 -0700)
PR gdb/28586 points out that "make distclean" fails to delete
config.cache from gdbserver/.  This patch fixes the bug, and removes a
duplicate "Makefile" deletion that was also pointed out in the PR.

gdbserver/Makefile.in

index 71c3c4ad95915e158676e03034295a96e391f7c5..34c881d96030a5fbf394cc3c5ee27396ae672d04 100644 (file)
@@ -412,8 +412,7 @@ mostlyclean clean:
        done
 
 maintainer-clean realclean distclean: clean
-       rm -f Makefile config.status config.h stamp-h config.log
-       rm -f Makefile
+       rm -f Makefile config.status config.h stamp-h config.log config.cache
        for i in $(CONFIG_SRC_SUBDIR); do \
                rmdir $$i/$(DEPDIR); \
        done