aboutsummaryrefslogtreecommitdiffstats
path: root/make-authors-short.pl
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2009-06-21 12:47:48 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2009-06-21 12:47:48 +0000
commitc47eeae22b4edcebb6b58a5ef1a67b139473d203 (patch)
tree779fd228d4c61751c9f15f4c07cbe25078beff98 /make-authors-short.pl
parent05a3dca2bc492be7443afc52fbff2bb9c182e705 (diff)
Move the generated documentation (man pages, AUTHORS-SHORT-FORMAT, and
AUTHORS-SHORT) into doc/. This cleans up the top-level Makefile.am (no more need to have rules for each man page in both files) and solves the parallel-build problem described in: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3494 svn path=/trunk/; revision=28784
Diffstat (limited to 'make-authors-short.pl')
-rwxr-xr-xmake-authors-short.pl31
1 files changed, 0 insertions, 31 deletions
diff --git a/make-authors-short.pl b/make-authors-short.pl
deleted file mode 100755
index ac96b0c264..0000000000
--- a/make-authors-short.pl
+++ /dev/null
@@ -1,31 +0,0 @@
-# $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;
-
-$_ = <>;
-s/\xef\xbb\xbf//; # Skip UTF-8 byte order mark
-print unless /^\n/;
-
-while (<>) {
- if (/(.*){/) {
- $subinfo = 1;
- print "$1\n";
- } elsif (/}/) {
- $subinfo = 0;
- if (($nextline = <>) !~ /^[\s]*$/) {
- print $nextline;
- }
- } elsif ($subinfo == 1) {
- next;
- } else {
- print;
- }
-}