From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 337E63858281; Thu, 30 Mar 2023 11:24:42 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 337E63858281 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1680175482; bh=h8Y3X0oGn2ePwoYh/gbpt31pnAXx+bxZyY9SNyJ33iY=; h=From:To:Subject:Date:In-Reply-To:References:From; b=BBGAYFrCPWq6WY7UP3GV3L8XwulthMijPkO+LrxMJE+A2fR38RlP23Oa20mFn4xvI Wb5FaIOjdJ+/CChkS4r58gfndDWh7GEsWzLSOrJZYSQ1XnXtvwl8pXv/GxHpNH1szC uSMIxQDOKdEx7LphQ3khOIqi5dRhQJdxf8U3t298= From: "redi at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/101834] make distclean forgets ./c++tools/ Date: Thu, 30 Mar 2023 11:24:41 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 11.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: redi at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D101834 --- Comment #5 from Jonathan Wakely --- c++tools/Makefile.in has: mostlyclean:: rm -f $(MAPPER.O) clean:: rm -f g++-mapper-server$(exeext) distclean:: rm -f config.log config.status config.h Should distclean have clean as a prerequisite and clean have mostlyclean as= a prerequisite? That would still leave config.cache and Makefile and the .d fragments thoug= h.=