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.
This commit is contained in:
Joel Brobecker 2021-01-01 11:56:12 +04:00
parent 2b47c078fd
commit ff7e39b613
2 changed files with 8 additions and 1 deletions

View File

@ -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.

View File

@ -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)