Skip to content
Snippets Groups Projects
Commit df1ca263 authored by Kieron Taylor's avatar Kieron Taylor :angry:
Browse files

\C looks like a deprecated regex character. Removed for Perl compatibility

parent 097bcc10
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ foreach my $f (@source_files) {
next if $f =~ /\/blib\//;
next if $f =~ /\/HALXS\.c$/;
next if $f =~ /\.conf\b/;
next if $f =~ /\CLEAN\b/;
next if $f =~ /CLEAN\b/;
next if $f =~ /\.(tmpl|hash|nw|ctl|txt|html|textile)$/;
has_apache2_licence($f);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment