summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2017-07-07 14:56:20 -0700
committerMathias Preiner <mathias.preiner@gmail.com>2017-07-07 14:56:20 -0700
commit6616eca654fe345abe70f853472fafe5af171810 (patch)
treed24b7be26de2a682c48a80f5f5e163ff720b6549 /contrib
parent71b92ec515a27e8a40a7e85e6cbd6a862482574e (diff)
Update files that are part of the CVC4 license, exclude minisat files.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/update-copyright.pl13
1 files changed, 11 insertions, 2 deletions
diff --git a/contrib/update-copyright.pl b/contrib/update-copyright.pl
index 99472ff94..54122b236 100755
--- a/contrib/update-copyright.pl
+++ b/contrib/update-copyright.pl
@@ -34,8 +34,17 @@
# the license.)
#
-my $excluded_directories = '^(minisat|bvminisat|CVS|generated)$';
-my $excluded_paths = '^(src/parser/antlr_input_imports.cpp|src/bindings/compat/.*|src/util/channel.h)$';
+my $excluded_directories = '^(CVS|generated)$';
+my $excluded_paths = '^(';
+$excluded_paths .= 'src/bindings/compat/.*';
+# different license
+$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 .= '$)';
# Years of copyright for the template. E.g., the string
# "1985, 1987, 1992, 1997, 2008" or "2006-2009" or whatever.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback