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:
386acf9
)
allow extensions to be specified as paths
author
Paul Johnson
<paul@pjcj.net>
Tue, 21 Jul 1998 12:04:27 +0000
(13:04 +0100)
committer
Gurusamy Sarathy
<gsar@cpan.org>
Wed, 22 Jul 1998 06:39:22 +0000
(06:39 +0000)
Message-Id: <
19980721120427
.F903@west-tip.transeda.com>
Subject: [PATCH] 5.004_75 Embed and static extensions
p4raw-id: //depot/perl@1624
lib/ExtUtils/Embed.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/ExtUtils/Embed.pm
b/lib/ExtUtils/Embed.pm
index
fe545a8
..
e41ca40
100644
(file)
--- a/
lib/ExtUtils/Embed.pm
+++ b/
lib/ExtUtils/Embed.pm
@@
-201,7
+201,7
@@
sub ldopts {
my($mod,@ns,$root,$sub,$extra,$archive,@archives);
print STDERR "Searching (@path) for archives\n" if $Verbose;
foreach $mod (@mods) {
- @ns = split(
'::'
, $mod);
+ @ns = split(
/::|\/|\\/
, $mod);
$sub = $ns[-1];
$root = $MM->catdir(@ns);