mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 07:41:50 -04:00
use SITE_PERL and %%SITE_PERL%% strip pkg-descr from all it's superfluous spaces PR: 51568 Submitted by: me Approved by: maintainer timeout (+2 months)
12 lines
292 B
Perl
12 lines
292 B
Perl
--- String.pm~ Tue Mar 11 04:16:42 2003
|
|
+++ String.pm Fri May 2 15:26:38 2003
|
|
@@ -128,7 +128,8 @@
|
|
# This is different from perl's normal behaviour by not letting
|
|
# a U+0030 ("0") be false.
|
|
my $self = shift;
|
|
- $$self ? 1 : "";
|
|
+ my $a = $$self;
|
|
+ $a ? 1 : "";
|
|
}
|
|
|
|
|