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 | |
parent | d27ecc497ca88c0e24dcbd2e9f7c718bfbfe890f (diff) | |
download | gcc-123451d73f19ce13a60437fa225388dea74020c4.zip gcc-123451d73f19ce13a60437fa225388dea74020c4.tar.gz gcc-123451d73f19ce13a60437fa225388dea74020c4.tar.bz2 |
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')
-rw-r--r-- | gnattools/ChangeLog | 5 | ||||
-rw-r--r-- | gnattools/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gnattools/ChangeLog b/gnattools/ChangeLog index bdcd968..18aa702 100644 --- a/gnattools/ChangeLog +++ b/gnattools/ChangeLog @@ -1,3 +1,8 @@ +2016-04-04 Segher Boessenkool <segher@kernel.crashing.org> + + PR bootstrap/70173 + * Makefile.in (distclean): Also delete config.cache . + 2015-12-06 Eric Botcazou <ebotcazou@adacore.com> PR ada/50048 diff --git a/gnattools/Makefile.in b/gnattools/Makefile.in index 0c889ee..f949ca9 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: |