diff options
author | Segher Boessenkool <segher@kernel.crashing.org> | 2016-04-04 18:37:58 +0200 |
---|---|---|
committer | Segher Boessenkool <segher@gcc.gnu.org> | 2016-04-04 18:37:58 +0200 |
commit | 123451d73f19ce13a60437fa225388dea74020c4 (patch) | |
tree | 2c9ecb48f2407fcc5036946465031ca191a50042 /gnattools/Makefile.in | |
parent | d27ecc497ca88c0e24dcbd2e9f7c718bfbfe890f (diff) | |
download | gcc-123451d73f19ce13a60437fa225388dea74020c4.tar.gz |
gnattools: Clean config.cache (PR70173)
The config.cache file should be deleted by "make distclean", just like
config.log and config.status . The directory itself is still not deleted
(just like the gotools and libcc1 directories).
gnattools/
PR bootstrap/70173
* Makefile.in (distclean): Also delete config.cache .
From-SVN: r234721
Diffstat (limited to 'gnattools/Makefile.in')
-rw-r--r-- | gnattools/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnattools/Makefile.in b/gnattools/Makefile.in index 0c889eeec7b..f949ca9b34b 100644 --- a/gnattools/Makefile.in +++ b/gnattools/Makefile.in @@ -309,7 +309,7 @@ mostlyclean: clean: distclean: - $(RM) Makefile config.status config.log + $(RM) Makefile config.status config.log config.cache maintainer-clean: |