diff options
-rw-r--r-- | contrib/ChangeLog | 4 | ||||
-rwxr-xr-x | contrib/update-copyright.py | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 16c1f41..b175060 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2018-01-03 Jakub Jelinek <jakub@redhat.com> + + * update-copyright.py: Skip pdt-5.f03 in gfortran.dg subdir. + 2017-11-28 Julia Koval <julia.koval@intel.com> Sebastian Peryt <sebastian.peryt@intel.com> diff --git a/contrib/update-copyright.py b/contrib/update-copyright.py index f9852a8..85be1e1 100755 --- a/contrib/update-copyright.py +++ b/contrib/update-copyright.py @@ -591,6 +591,8 @@ class TestsuiteFilter (GenericFilter): # Similarly params/README. if filename == 'README' and os.path.basename (dir) == 'params': return True + if filename == 'pdt_5.f03' and os.path.basename (dir) == 'gfortran.dg': + return True return GenericFilter.skip_file (self, dir, filename) class LibCppFilter (GenericFilter): |