update-copyright: Fix matching of excluded paths.
authorAina Niemetz <aina.niemetz@gmail.com>
Mon, 25 Mar 2019 19:31:59 +0000 (12:31 -0700)
committerAina Niemetz <aina.niemetz@gmail.com>
Mon, 25 Mar 2019 19:31:59 +0000 (12:31 -0700)
contrib/update-copyright.pl

index 26db51e25cd338d12874fe1b9e95f3e247ebbba8..3412905af99c785e93cf3dc7d606361318b2d8a0 100755 (executable)
 
 my $excluded_directories = '^(CVS|generated)$';
 my $excluded_paths = '^(';
+# note: first excluded path regexp must not start with a '|'
 # different license
-$excluded_paths .= '|src/util/channel.h';
+$excluded_paths .= 'src/util/channel.h';
 # minisat license
 $excluded_paths .= '|src/prop/(bv)?minisat/core/.*';
 $excluded_paths .= '|src/prop/(bv)?minisat/mtl/.*';
 $excluded_paths .= '|src/prop/(bv)?minisat/simp/.*';
 $excluded_paths .= '|src/prop/(bv)?minisat/utils/.*';
-$excluded_paths .= '$)';
+$excluded_paths .= ')$';
 
 # Years of copyright for the template.  E.g., the string
 # "1985, 1987, 1992, 1997, 2008" or "2006-2009" or whatever.