[binutils-gdb/gdb-10-branch] gdb/copyright.py: Also update sources in "gdbserver" and "gdbsupport"

Joel Brobecker brobecke@sourceware.org
Fri Jan 1 08:25:38 GMT 2021


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=18b166df9fbf15c54d88f1801e584a5c1847083d

commit 18b166df9fbf15c54d88f1801e584a5c1847083d
Author: Joel Brobecker <brobecker@adacore.com>
Date:   Fri Jan 1 11:56:12 2021 +0400

    gdb/copyright.py: Also update sources in "gdbserver" and "gdbsupport"
    
    This commit adjusts GDB's copyright.py script, following two past changes:
      - gdb/gdbserver/ being move to the toplevel directory;
      - gdb/common/ being renamed to gdbsupport/.
    
    gdb/ChangeLog:
    
            * copyright.py (get_update_list): Add "gdbserver" and "gdbsupport"
            to the list of directories to update.
    
    (cherry picked from commit ff7e39b613503fa5d7417e284ee2549117efdb91)

Diff:
---
 gdb/ChangeLog    | 5 +++++
 gdb/copyright.py | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a9b18f46bea..4892f80a808 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2021-01-01  Joel Brobecker  <brobecker@adacore.com>
+
+	* copyright.py (get_update_list): Add "gdbserver" and "gdbsupport"
+	to the list of directories to update.
+
 2021-01-01  Joel Brobecker  <brobecker@adacore.com>
 
 	* top.c (print_gdb_version): Update copyright year.
diff --git a/gdb/copyright.py b/gdb/copyright.py
index 6fc7e1f461a..ad3c129ae5b 100644
--- a/gdb/copyright.py
+++ b/gdb/copyright.py
@@ -46,7 +46,9 @@ def get_update_list():
     the files are relative to that root directory.
     """
     result = []
-    for gdb_dir in ('gdb', 'gnulib', 'sim', 'include/gdb'):
+    for gdb_dir in (
+        'gdb', 'gdbserver', 'gdbsupport', 'gnulib', 'sim', 'include/gdb',
+    ):
         for root, dirs, files in os.walk(gdb_dir, topdown=True):
             for dirname in dirs:
                 reldirname = "%s/%s" % (root, dirname)


More information about the Gdb-cvs mailing list