diff options
author | Alan Modra <amodra@gmail.com> | 2024-01-04 22:22:08 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2024-01-04 22:58:12 +1030 |
commit | fd67aa1129fd006ad49ed5ecb2b063705211553a (patch) | |
tree | 323c2da4c82f1fc5e98e7fc788e7f3d12ad4687d /etc | |
parent | ce3abd4734c1d4994937dc0defa71c4ac9f34185 (diff) | |
download | fsf-binutils-gdb-fd67aa1129fd006ad49ed5ecb2b063705211553a.zip fsf-binutils-gdb-fd67aa1129fd006ad49ed5ecb2b063705211553a.tar.gz fsf-binutils-gdb-fd67aa1129fd006ad49ed5ecb2b063705211553a.tar.bz2 |
Update year range in copyright notice of binutils files
Adds two new external authors to etc/update-copyright.py to cover
bfd/ax_tls.m4, and adds gprofng to dirs handled automatically, then
updates copyright messages as follows:
1) Update cgen/utils.scm emitted copyrights.
2) Run "etc/update-copyright.py --this-year" with an extra external
author I haven't committed, 'Kalray SA.', to cover gas testsuite
files (which should have their copyright message removed).
3) Build with --enable-maintainer-mode --enable-cgen-maint=yes.
4) Check out */po/*.pot which we don't update frequently.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile.am | 2 | ||||
-rw-r--r-- | etc/Makefile.in | 2 | ||||
-rw-r--r-- | etc/add-log.el | 2 | ||||
-rw-r--r-- | etc/texi2pod.pl | 2 | ||||
-rwxr-xr-x | etc/update-copyright.py | 5 |
5 files changed, 8 insertions, 5 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am index cba2f88..f48d0d2 100644 --- a/etc/Makefile.am +++ b/etc/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to generate Makefile.in # -# Copyright (C) 1992-2023 Free Software Foundation, Inc. +# Copyright (C) 1992-2024 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/etc/Makefile.in b/etc/Makefile.in index fbd9ca2..b73dbde 100644 --- a/etc/Makefile.in +++ b/etc/Makefile.in @@ -15,7 +15,7 @@ @SET_MAKE@ # -# Copyright (C) 1992-2023 Free Software Foundation, Inc. +# Copyright (C) 1992-2024 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/etc/add-log.el b/etc/add-log.el index 51240ee..a2c8027 100644 --- a/etc/add-log.el +++ b/etc/add-log.el @@ -25,7 +25,7 @@ ;;; add-log.el --- change log maintenance commands for Emacs -;; Copyright (C) 1985-2023 Free Software Foundation, Inc. +;; Copyright (C) 1985-2024 Free Software Foundation, Inc. ;; Keywords: maint diff --git a/etc/texi2pod.pl b/etc/texi2pod.pl index 1c320f5..a0ea5ed 100644 --- a/etc/texi2pod.pl +++ b/etc/texi2pod.pl @@ -1,6 +1,6 @@ #! /usr/bin/perl -w -# Copyright (C) 1999-2023 Free Software Foundation, Inc. +# Copyright (C) 1999-2024 Free Software Foundation, Inc. # This file is part of GCC. diff --git a/etc/update-copyright.py b/etc/update-copyright.py index 8f5d33f..589eb98 100755 --- a/etc/update-copyright.py +++ b/etc/update-copyright.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2013-2023 Free Software Foundation, Inc. +# Copyright (C) 2013-2024 Free Software Foundation, Inc. # # This script is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -596,6 +596,8 @@ class BinutilsCopyright (Copyright): self.add_external_author ('Third Eye Software, Inc.') self.add_external_author ('Ulrich Drepper') self.add_external_author ('Synopsys Inc.') + self.add_external_author ('Alan Woodland') + self.add_external_author ('Diego Elio Petteno') class BinutilsCmdLine (CmdLine): def __init__ (self): @@ -634,6 +636,7 @@ class BinutilsCmdLine (CmdLine): 'gas', 'gold', 'gprof', + 'gprofng', 'include', 'ld', 'libctf', |