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:
parent
2b47c078fd
commit
ff7e39b613
@ -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.
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user