diff options
author | Joel Brobecker <brobecker@adacore.com> | 2020-02-25 07:36:45 +0400 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2020-02-25 07:36:45 +0400 |
commit | c325c44ef674de4c6ba2bfbb2eefb5f4661081cc (patch) | |
tree | 8eeb4106fdd46c3c422c0ee6cfecbc3d999db368 /gdb/copyright.py | |
parent | a60419c8c9f5919048621f53153b9ac1ec7c444c (diff) | |
download | binutils-gdb-c325c44ef674de4c6ba2bfbb2eefb5f4661081cc.tar.gz |
gdb/copyright.py: Add generated files in gnulib/ to exclude list
This will prevent this script from updating the copyright year range
for those files.
Note that aclocal.m4 and configure are already in the EXCLUDE_ALL_LIST,
so they don't need to be added to the EXCLUDE_LIST.
gdb/ChangeLog:
* copypright.py (EXCLUDE_LIST): Add 'gnulib/config.in' and
'gnulib/Makefile.in' to the list.
Diffstat (limited to 'gdb/copyright.py')
-rw-r--r-- | gdb/copyright.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/copyright.py b/gdb/copyright.py index baa799de927..6fc7e1f461a 100644 --- a/gdb/copyright.py +++ b/gdb/copyright.py @@ -190,7 +190,9 @@ def main (): EXCLUDE_LIST = ( 'gdb/nat/glibc_thread_db.h', 'gdb/CONTRIBUTE', - 'gnulib/import' + 'gnulib/import', + 'gnulib/config.in', + 'gnulib/Makefile.in', ) # Files which should not be modified, either because they are |