From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [IPv6:2001:67c:2178:6::1d]) by sourceware.org (Postfix) with ESMTPS id 771D33858D33 for ; Fri, 6 Jan 2023 07:49:27 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 771D33858D33 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 374642344F; Fri, 6 Jan 2023 07:49:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1672991364; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=xxikax2MP5sT9qUUl1zTiQZ+CXEg6+toCg0pNWIc8cI=; b=oi3VPcuW3nY7o/BPXgyDuGJ5aBm2Zulq1hHSjTn0H4h42hzdxYGO8z8A6DRc+F5LE7XBB+ HJA/61ygNCuDGIuv6Txd5GBQwbPPnd4m6th0nHUGzJA0prkkFMyvwoKt0zdukVIJmuiUYg 0PLj0koMK0NITo3LD40shlbchneGHJE= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1672991364; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=xxikax2MP5sT9qUUl1zTiQZ+CXEg6+toCg0pNWIc8cI=; b=DjhpvxtjjJOvTW9kVrstHtV2L9c5q4OAoaSsYd4z21Pw4DrcdSQ5HSenLCCS99WKx/p6xN QA6xK9rmHM4uZxDg== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 23D1F139D5; Fri, 6 Jan 2023 07:49:24 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id Ec20B4TSt2MoPAAAMHmgww (envelope-from ); Fri, 06 Jan 2023 07:49:24 +0000 Message-ID: <6973c338-686e-618c-4e1a-1bbd75369ff8@suse.cz> Date: Fri, 6 Jan 2023 08:49:23 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [PATCH][pushed] contrib: add 'contrib' to default dirs in update-copyright.py To: gcc-patches@gcc.gnu.org Content-Language: en-US Cc: Jakub Jelinek Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-11.6 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,SPF_HELO_NONE,SPF_SOFTFAIL,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: Hi. I forgot to include contrib folder in default dir, thus the copyright in the folder haven't been updated by Jakub. However, I noticed when I run ./contrib/update-copyright.py --this-year I get much more modifications out of contrib folder: $ git diff --stat ... 951 files changed, 976 insertions(+), 979 deletions(-) where the are not updated files is: gcc/analyzer/* gcc/common/config/* gcc/m2/* gcc/objc/* Jakub, can you please re-run the script? Cheers, Martin contrib/ChangeLog: * update-copyright.py: Add contrib as a default dir. --- contrib/update-copyright.py | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/update-copyright.py b/contrib/update-copyright.py index fcae846fb1e..06e6fb61757 100755 --- a/contrib/update-copyright.py +++ b/contrib/update-copyright.py @@ -785,6 +785,7 @@ class GCCCmdLine (CmdLine): self.default_dirs = [ 'c++tools', + 'contrib', 'gcc', 'include', 'libada', -- 2.39.0