freebsd-ports/games/xboard/files/patch-texi2man
Pav Lucistnik 814d09112a - Update to 4.2.7
PR:		ports/67092
Submitted by:	Mark Huizer <xaa+ports@timewasters.nl> (maintainer)
2004-05-29 13:01:37 +00:00

13 lines
375 B
Text

--- texi2man.orig Fri Nov 28 22:34:53 2003
+++ texi2man Sat May 29 14:55:49 2004
@@ -170,8 +170,8 @@
if (/\@include (.*)/) {
my $INCL;
- open($INCL, $1) or open($INCL, "../$1") or die "$1: $!";
- while (<$INCL>) {
+ open(INCL, $1) or open(INCL, "../$1") or die "$1: $!";
+ while (<INCL>) {
parse();
}
next;