]> git.ipfire.org Git - thirdparty/gcc.git/commit
Small tweaks for update-copyright.py
authorJakub Jelinek <jakub@redhat.com>
Wed, 3 Jan 2024 11:11:32 +0000 (12:11 +0100)
committerJakub Jelinek <jakub@redhat.com>
Wed, 3 Jan 2024 11:11:32 +0000 (12:11 +0100)
commit9afc19159c2947cddee0c833429da1f190fe34ca
tree1b570f99dc78cdadd099b95c037e18a9ecbc1bd0
parent4e053a7e19ea91fe6b3d71b294958fa2b9808b4a
Small tweaks for update-copyright.py

update-copyright.py --this-year FAILs on two spots in the modula2
directories.
One is gpl_v3_without_node.texi, I think that is similar to other
license files which we already exclude from updates.
And the other is GmcOptions.cc, which has lines like
  mcPrintf_printf0 ((const char *) "Copyright ", 10);
  mcPrintf_printf1 ((const char *) "Copyright (C) %d Free Software Foundation, Inc.\\n", 49, (const unsigned char *) &year, (sizeof (year)-1));
  mcPrintf_printf1 ((const char *) "Copyright (C) %d Free Software Foundation, Inc.\\n", 49, (const unsigned char *) &year, (sizeof (year)-1));
which update-copyhright.py obviously can't grok.  The file is generated
and doesn't contain normal Copyright year which should be updated, so I think
it is also ok to skip it.

2024-01-03  Jakub Jelinek  <jakub@redhat.com>

* update-copyright.py (GenericFilter): Skip gpl_v3_without_node.texi.
(GCCFilter): Skip GmcOptions.cc.
contrib/update-copyright.py