This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82f1ade
)
FindBin.pm on Win32 systems
author
Slaven Rezic
<slaven@rezic.de>
Mon, 4 Jan 1999 23:01:46 +0000
(
00:01
+0100)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Wed, 6 Jan 1999 11:25:48 +0000
(11:25 +0000)
To: perlbug@perl.com
Message-Id: <
199901042201
.XAA01875@cabulja.herceg.de>
p4raw-id: //depot/cfgperl@2571
lib/FindBin.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/FindBin.pm
b/lib/FindBin.pm
index
d6bd7b7
..
cd1871f
100644
(file)
--- a/
lib/FindBin.pm
+++ b/
lib/FindBin.pm
@@
-89,7
+89,7
@@
sub is_abs_path
local $_ = shift if (@_);
if ($^O eq 'MSWin32' || $^O eq 'dos')
{
- return m#^
[a-z]:[\\/]
#i;
+ return m#^
([a-z]:[\\/]|\\\\)
#i;
}
elsif ($^O eq 'VMS')
{