1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/misc/p5-DataCash/files/patch-File::KGlob2RE.pm

12 lines
439 B
Perl

--- File/KGlob2RE.pm.orig Wed Apr 17 13:05:33 2002
+++ File/KGlob2RE.pm Wed Apr 17 13:06:10 2002
@@ -110,7 +110,7 @@
warn "Unexpected end of file glob pattern: $glob\n";
return undef;
}
- if( $re !~ s-$NOQT/\(\|,\.\*/\)$-\1/- ) { # X/%* -> ^X/
+ if( $re !~ s-$NOQT/\(\|,\.\*/\)$-$1/- ) { # X/%* -> ^X/
$re .= '$';
} elsif( "" eq $re ) { # Since m// means something else:
$re= "^"; # %/* -> anything