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".
This commit is contained in:
parent
e7ab318507
commit
c3b18ee7ba
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue