From: jakub Date: Wed, 3 Jan 2018 10:00:43 +0000 (+0000) Subject: * update-copyright.py: Skip pdt-5.f03 in gfortran.dg subdir. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b580b4128187bb390653fc588e37ccf29bfcbdec;p=thirdparty%2Fgcc.git * update-copyright.py: Skip pdt-5.f03 in gfortran.dg subdir. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@256168 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/contrib/ChangeLog b/contrib/ChangeLog index 16c1f41f5428..b175060ae932 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 f9852a8544f8..85be1e151a63 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):