copyright.py: Handle files in gdb/gnulib owned by GDB.
authorJoel Brobecker <brobecker@gnat.com>
Fri, 21 Jun 2013 17:54:58 +0000 (17:54 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Fri, 21 Jun 2013 17:54:58 +0000 (17:54 +0000)
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".

gdb/ChangeLog
gdb/copyright.py

index dc234f4dfb1a1fcd73bc75b9fdcbd0acd1ead378..3ced366c6f0fd8e26966329641295ea1b01a9f91 100644 (file)
@@ -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.
index 039106cc86c750aa6aaf39b4c2ebe75bdc7eae39..e45425570df6c11897234adf4a01e2d9c445dd3d 100644 (file)
@@ -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
This page took 0.03037 seconds and 4 git commands to generate.