Trying to fix the build on Ubuntu-5.10-x86 buildbot again.
[obnox/wireshark/wip.git] / make-authors-short.pl
index 8c8559fafc18728d28d7b21d212c553129e2b5d5..ac96b0c264e049942d5c7525dd437b08816577c5 100755 (executable)
@@ -1,18 +1,15 @@
-#!/usr/bin/perl -w
-
 # $Id$
 
 # Remove tasks from individual author entries from AUTHORS file
 # for use in the about dialog.
+#
+# Must be called via perlnoutf.
 
 use strict;
 
 my $subinfo=0;
 my $nextline;
 
-print "=for html <pre>\n\n";
-print "=for man .nf\n\n";
-
 $_ = <>;
 s/\xef\xbb\xbf//;              # Skip UTF-8 byte order mark
 print unless /^\n/;
@@ -32,6 +29,3 @@ while (<>) {
                print;
        }
 }
-
-print "\n=for html </pre>\n";
-print "\n=for man .fi\n";