From c47eeae22b4edcebb6b58a5ef1a67b139473d203 Mon Sep 17 00:00:00 2001 From: Jeff Morriss Date: Sun, 21 Jun 2009 12:47:48 +0000 Subject: 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 --- make-authors-short.pl | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100755 make-authors-short.pl (limited to 'make-authors-short.pl') 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; - } -} -- cgit v1.2.3