From patchwork Mon Apr 4 12:34:54 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Segher Boessenkool X-Patchwork-Id: 605860 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3qdrzr4TbYz9s9x for ; Mon, 4 Apr 2016 22:35:19 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=KAa/bVwL; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id; q=dns; s=default; b=kPl45ddYVoDP iBNVtV/0O2bTN8PyRFx1QqnqLvoMXBmoy5vByt2rStctoezRdZaJfx5URdOEbaqg LgyBJDWTCWSJXIi66cSV0uIiJqpN+2qypwso6USGnDHRvTWOQyKpFdvQu9JmUtKh /5VhDLFWtfxHyGTgbYFFTDgYGYgVQCc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id; s=default; bh=YU/Lj2NAxsZoKXSbKx yHraJDR74=; b=KAa/bVwL4iOaoRy80msONJxc8a1w8zCMcBdZqJnO7cIskwyH/n KPvRAgUeM5eIqcbJabNO1Iy/HYegMIO0es9jgLZlEtXEk9reAUtQzKroiyhcgSiO 0jujR9fIc8Bc1RBdOGQm/Gyxiv/US8SdJBm5t5qqZl1WAIiznLWgF9UMY= Received: (qmail 125537 invoked by alias); 4 Apr 2016 12:35:11 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 125519 invoked by uid 89); 4 Apr 2016 12:35:10 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.1 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-HELO: gcc1-power7.osuosl.org Received: from gcc1-power7.osuosl.org (HELO gcc1-power7.osuosl.org) (140.211.15.137) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 04 Apr 2016 12:35:00 +0000 Received: by gcc1-power7.osuosl.org (Postfix, from userid 10019) id 2BDB31C0466; Mon, 4 Apr 2016 12:34:56 +0000 (UTC) From: Segher Boessenkool To: gcc-patches@gcc.gnu.org Cc: ebotcazou@adacore.com, Segher Boessenkool Subject: [PATCH] gnattools: Clean config.cache (PR70173) Date: Mon, 4 Apr 2016 12:34:54 +0000 Message-Id: <45f594e2170784289e597113ec2036d651a02f7d.1459770969.git.segher@kernel.crashing.org> X-IsSubscribed: yes 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). Tested on powerpc64-linux, --enable-languages=all,ada,go,obj-c++ , followed by "make distclean". Is this okay for trunk? Segher 2016-04-04 Segher Boessenkool gnattools/ PR bootstrap/70173 * Makefile.in (distclean): Also delete config.cache . --- gnattools/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: