From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21246 invoked by alias); 16 Apr 2013 18:31:15 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 21217 invoked by uid 89); 16 Apr 2013 18:31:15 -0000 X-Spam-SWARE-Status: No, score=-8.0 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Tue, 16 Apr 2013 18:31:14 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3GIVDQ4015891 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 16 Apr 2013 14:31:13 -0400 Received: from brno.lan (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r3GIVCSl011934 for ; Tue, 16 Apr 2013 14:31:13 -0400 Subject: [PATCH 4/6] copyright.py: Don't update glibc_thread_db.h. To: gdb-patches@sourceware.org From: Pedro Alves Date: Wed, 17 Apr 2013 02:42:00 -0000 Message-ID: <20130416183111.540.90223.stgit@brno.lan> In-Reply-To: <20130416183043.540.32214.stgit@brno.lan> References: <20130416183043.540.32214.stgit@brno.lan> User-Agent: StGit/0.16 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-SW-Source: 2013-04/txt/msg00503.txt.bz2 As glibc_thread_db.h is a 3rd party imported file, we should not update its copyright year range in the new year process. gdb/ 2013-04-16 Pedro Alves * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h. --- gdb/copyright.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gdb/copyright.py b/gdb/copyright.py index 1af0f48..039106c 100644 --- a/gdb/copyright.py +++ b/gdb/copyright.py @@ -171,6 +171,7 @@ def main (): # # Filenames are relative to the root directory. EXCLUDE_LIST = ( + 'gdb/common/glibc_thread_db.h', 'gdb/CONTRIBUTE', 'gdb/gnulib' )