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.
+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.
 
     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)