From: Jakub Jelinek Date: Wed, 3 Jan 2018 10:00:43 +0000 (+0100) Subject: * update-copyright.py: Skip pdt-5.f03 in gfortran.dg subdir. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ada38d5fa317498d15be166623520b9152c650cb;p=gcc.git * update-copyright.py: Skip pdt-5.f03 in gfortran.dg subdir. From-SVN: r256168 --- diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 16c1f41f542..b175060ae93 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2018-01-03 Jakub Jelinek + + * update-copyright.py: Skip pdt-5.f03 in gfortran.dg subdir. + 2017-11-28 Julia Koval Sebastian Peryt diff --git a/contrib/update-copyright.py b/contrib/update-copyright.py index f9852a8544f..85be1e151a6 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):