ports/devel/automake/1.8/patches/patch-lib_Automake_Wrap_pm

14 lines
317 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Avoid a warning from perl-5.11
--- lib/Automake/Wrap.pm.orig Thu May 5 11:17:06 2011
+++ lib/Automake/Wrap.pm Thu May 5 11:17:18 2011
@@ -57,7 +57,7 @@ sub tab_length($)
{
my ($txt) = @_;
my $len = length ($txt);
- $len += 7 * ($txt =~ tr/\t/\t/d);
+ $len += 7 * ($txt =~ tr/\t/\t/);
return $len;
}