From 11df1040a970bfc513eb0760c57e216440376cc1 Mon Sep 17 00:00:00 2001 From: Chris Nighswonger Date: Tue, 13 Nov 2007 16:20:30 -0600 Subject: [PATCH] Cleaned up regex's looking for defunct CVS files Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- Makefile.PL | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index e7c6f2c769..53ea90c1d9 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -227,10 +227,10 @@ Templates are copied to koha/templates, =pod -excluding non-files, CVS files and whitespace in filenames. +excluding non-files and whitespace in filenames. =cut - if ((-f $src) && ($src !~ /(\/CVS\/|\s)/)) { + if ((-f $src) && ($src !~ /(\s)/)) { $result{$src} = '$(INST_LIBDIR)/koha/templates/'.$src; } } -- 2.20.1