]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Contributed code should maintain its own copyright.
authorMark Andrews <marka@isc.org>
Fri, 5 Mar 2004 12:56:28 +0000 (12:56 +0000)
committerMark Andrews <marka@isc.org>
Fri, 5 Mar 2004 12:56:28 +0000 (12:56 +0000)
util/merge_copyrights

index ac983a2504d5e13f9f9a777065975645d5924740..95e081b5ef85e9d3e8e3a0485c42d06a3842a21e 100644 (file)
@@ -15,7 +15,7 @@
 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 # PERFORMANCE OF THIS SOFTWARE.
 
-# $Id: merge_copyrights,v 1.18 2004/03/05 05:14:16 marka Exp $
+# $Id: merge_copyrights,v 1.19 2004/03/05 12:56:28 marka Exp $
 
 %file_types = ();
 %file_years = ();
@@ -51,7 +51,10 @@ while (<FILES>) {
        # .in files are processed by configure to produce the target file.
        ($base = $_) =~ s/\.in$//;
 
-       if ($base =~ /\.(c|h|css)$/) {
+       # Contributed code should maintain its own copyright.
+       if ($base =~ /\.\/contrib\//) {
+            $file_types{$_} = "X";
+       } elsif ($base =~ /\.(c|h|css)$/) {
            $file_types{$_} = "C";
         } elsif ($base =~ /\.y$/) {
            $file_types{$_} = "YACC";