diff mbox

[committed] contrib/update-copyright.py --this-year

Message ID 20170104115232.GK21933@tucnak
State New
Headers show

Commit Message

Jakub Jelinek Jan. 4, 2017, 11:52 a.m. UTC
On Wed, Jan 04, 2017 at 12:48:47PM +0100, Jakub Jelinek wrote:
> On Sun, Jan 01, 2017 at 01:19:49PM +0100, Jakub Jelinek wrote:
> > 	Update copyright years.
> > 
> > (result of contrib/update-copyright.py --this-year).
> 
> Apparently a bunch of directories I think we want to handle is not included
> by default.  I've updated them by running
> contrib/update-copyright.py --this-year include libcc1 libiberty libssp libvtv lto-plugin
> and will update the script to do this by default next time.

And here is corresponding update-copyright.py change I've checked in as
obvious.

2017-01-04  Jakub Jelinek  <jakub@redhat.com>

	* update-copyright.py (GCCCmdLine): Add include, libcc1, libiberty,
	libssp, libvtv and lto-plugin to default_dirs.



	Jakub
diff mbox

Patch

--- contrib/update-copyright.py	(revision 244050)
+++ contrib/update-copyright.py	(working copy)
@@ -748,17 +748,23 @@  class GCCCmdLine (CmdLine):
 
         self.default_dirs = [
             'gcc',
+            'include',
             'libada',
             'libatomic',
             'libbacktrace',
+            'libcc1',
             'libcpp',
             'libdecnumber',
             'libgcc',
             'libgfortran',
             'libgomp',
+            'libiberty',
             'libitm',
             'libobjc',
+            'libssp',
             'libstdc++-v3',
+            'libvtv',
+            'lto-plugin',
             ]
 
 GCCCmdLine().main()