diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-06-21 17:54:58 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-06-21 17:54:58 +0000 |
commit | c3b18ee7ba56b1e49df73fc4acfb756917c3d442 (patch) | |
tree | db628e7950f031a47b9dc0b38e1d92d403d90a3b /gdb | |
parent | e7ab31850716c44cfef300e5e5ff7d8ff3317b93 (diff) | |
download | gdb-c3b18ee7ba56b1e49df73fc4acfb756917c3d442.zip gdb-c3b18ee7ba56b1e49df73fc4acfb756917c3d442.tar.gz gdb-c3b18ee7ba56b1e49df73fc4acfb756917c3d442.tar.bz2 |
copyright.py: Handle files in gdb/gnulib owned by GDB.
The script was excluding all of gdb/gnulib but this is no longer
correct, ever since we moved the imported files to gdb/gnulib/import.
As a result, a number of files (Makefile, etc, including this script
itself) did not have their copyright header updated. This fixes
the problem.
gdb/ChangeLog:
* copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
"gdb/gnulib/import".
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/copyright.py | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index dc234f4..3ced366 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-06-21 Joel Brobecker <brobecker@adacore.com> + + * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by + "gdb/gnulib/import". + 2013-06-21 Will Newton <will.newton@linaro.org> * doublest.c (ldfrexp): Remove function. diff --git a/gdb/copyright.py b/gdb/copyright.py index 039106c..e454255 100644 --- a/gdb/copyright.py +++ b/gdb/copyright.py @@ -173,7 +173,7 @@ def main (): EXCLUDE_LIST = ( 'gdb/common/glibc_thread_db.h', 'gdb/CONTRIBUTE', - 'gdb/gnulib' + 'gdb/gnulib/import' ) # Files which should not be modified, either because they are |