diff options
author | tobez <tobez@FreeBSD.org> | 2001-11-18 22:54:13 +0000 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2001-11-18 22:54:13 +0000 |
commit | 5ed9b413af4a4153e9d7cc26c43a3912caaf7300 (patch) | |
tree | 336a692067796f24cf7bd6054aaf323b95e9a731 /textproc | |
parent | dc4a490a9fc90b69a36540e7afe0121b48c5cec7 (diff) | |
download | FreeBSD-ports-5ed9b413af4a4153e9d7cc26c43a3912caaf7300.zip FreeBSD-ports-5ed9b413af4a4153e9d7cc26c43a3912caaf7300.tar.gz |
Bug fix (Perl on FreeBSD does not support -T and -B tests on a
filehandle; do not use them).
PR: 31848
Submitted by: maintainer
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/makepatch/Makefile | 1 | ||||
-rw-r--r-- | textproc/makepatch/files/patch-makepatch.PL | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/textproc/makepatch/Makefile b/textproc/makepatch/Makefile index be220ec..ffa7c5f 100644 --- a/textproc/makepatch/Makefile +++ b/textproc/makepatch/Makefile @@ -7,6 +7,7 @@ PORTNAME= makepatch PORTVERSION= 2.00a +PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= ../../authors/id/JV diff --git a/textproc/makepatch/files/patch-makepatch.PL b/textproc/makepatch/files/patch-makepatch.PL new file mode 100644 index 0000000..ee0bb07 --- /dev/null +++ b/textproc/makepatch/files/patch-makepatch.PL @@ -0,0 +1,22 @@ +--- makepatch.PL Sun Dec 6 09:04:51 1998 ++++ makepatch.PL.new Mon Nov 5 19:47:17 2001 +@@ -670,11 +670,14 @@ + $skipped++; + return 0; + } +- if ( -B $fh ) { +- verbose ("WARNING: Binary file $new -- skipped\n"); +- $skipped++; +- return 0; +- } ++# Binary/Text test on filehandle makes no sense (and causes failure) ++# on FreeBSD ++# ++# if ( -B $fh ) { ++# verbose ("WARNING: Binary file $new -- skipped\n"); ++# $skipped++; ++# return 0; ++# } + my $pos = $fh->getpos; + while ( <$fh> ) { + $lines++; |