summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-09-16 20:53:19 +0000
committerMorgan Deters <mdeters@gmail.com>2011-09-16 20:53:19 +0000
commit91e745e02684416186f4ea4e33cf8e42194cd7c9 (patch)
tree3002e7a61819275d97fa4220242bf07aa3cfaac7 /contrib
parent55820808b55999c27ee1a66df0e674318302d5a6 (diff)
fix serious issue with copyright-updating script
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/update-copyright.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/update-copyright.pl b/contrib/update-copyright.pl
index 282bffd5d..397f1426b 100755
--- a/contrib/update-copyright.pl
+++ b/contrib/update-copyright.pl
@@ -170,6 +170,12 @@ sub handleFile {
print $OUT " **\n";
while(my $line = <$IN>) {
last if $line =~ /^ \*\*\s*$/;
+ if($line =~ /\*\//) {
+ print $OUT " ** [[ Add lengthier description here ]]\n";
+ print $OUT " ** \\todo document this file\n";
+ print $OUT $line;
+ last;
+ }
}
} else {
my $line = $_;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback