aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/copyright.py4
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 558094a..c0a68b2 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
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.
2021-01-01 Joel Brobecker <brobecker@adacore.com>
diff --git a/gdb/copyright.py b/gdb/copyright.py
index 6fc7e1f..ad3c129 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)