From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id 852F03858C31 for ; Fri, 17 Feb 2023 14:34:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 852F03858C31 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.de Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out1.suse.de (Postfix) with ESMTP id B34F533B03; Fri, 17 Feb 2023 14:34:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1676644494; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=wrAmcK85Hgqru0NO3nO0UHp0QRuST66leGE+xPLXr7o=; b=IhYpukmfV/1/2DwdV9Qq9uRsXkNeD1TlO0aeX2IT57vyvGNgh4d3lRqk1aMfrHx+O9L89Q EWMDNgmz8TAea9nqzC0ziF5H4u3pzdzGn+0AjKFgnqRqVtkr3VJigd5y4VXCXQRST/HT1P YdFZDtJ/BtnGEZ/yGujwwTUXzCsT1aM= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1676644494; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=wrAmcK85Hgqru0NO3nO0UHp0QRuST66leGE+xPLXr7o=; b=h7suq5WqAnRbSmXNWM5Ebx53DJlxB2J3VSUbnhM6xyZN6BckvPuOKjY7So9p/3fqxkVFxj U/tfW7CZyYgBH7Bw== Received: from wotan.suse.de (wotan.suse.de [10.160.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by relay2.suse.de (Postfix) with ESMTPS id 8056C2C141; Fri, 17 Feb 2023 14:34:54 +0000 (UTC) Received: by wotan.suse.de (Postfix, from userid 10510) id 6795D6350; Fri, 17 Feb 2023 14:34:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by wotan.suse.de (Postfix) with ESMTP id 665F66289; Fri, 17 Feb 2023 14:34:54 +0000 (UTC) Date: Fri, 17 Feb 2023 14:34:54 +0000 (UTC) From: Michael Matz To: Ulf Samuelsson cc: binutils@sourceware.org, Nick Clifton Subject: Re: The binutils ".gitignore" seems outdated & "make distclean" does not clean everything In-Reply-To: Message-ID: References: User-Agent: Alpine 2.20 (LSU 67 2015-01-07) MIME-Version: 1.0 Content-Type: multipart/mixed; BOUNDARY="-1609957120-919800626-1676644494=:16810" X-Spam-Status: No, score=-1.7 required=5.0 tests=BAYES_00,BODY_8BITS,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---1609957120-919800626-1676644494=:16810 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Hey, On Thu, 16 Feb 2023, Ulf Samuelsson via Binutils wrote: > Ran a build script. > > ================= > #!/bin/bash > DEST_DIR=/home/ulf/projects/binutils/bin > mkdir        -p $DEST_DIR > rm             -fr $DEST_DIR/* > ./configure --prefix $DEST_DIR > make -j 32 > make install > ================= Always build binutils in a separate build dir. (Not doing so will usually work, except when it doesn't; but the general advise is always to build in separate dirs). That alone will get rid of most (if not all) of the additional files you see. make distclean will be similar. (That doesn't mean that .gitignore might not want additions, but usually people don't notice this as they build in separate dirs) Ciao, Michael. ---1609957120-919800626-1676644494=:16810--