summaryrefslogtreecommitdiff
path: root/lib/AutoLoader.pm
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-02-28 23:11:00 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-02-28 23:11:00 +0000
commit1c1c7f20b839aeb1c04942d0884c3efb087d3e4a (patch)
tree520fab1019a7e34a8d8090c712af7aa799736d00 /lib/AutoLoader.pm
parent0bfcb09dbc8a8333a31bc4ed39ebc944580fd2fe (diff)
downloadperl-1c1c7f20b839aeb1c04942d0884c3efb087d3e4a.tar.gz
[win32] misc small tweaks
- AutoLoader fix for long::pack::names - d_mymalloc can be set from makefiles now - make search.pl actually work on win32 - revert podoc about $^E on OS/2 (per Ilya's wishes) p4raw-id: //depot/win32/perl@606
Diffstat (limited to 'lib/AutoLoader.pm')
-rw-r--r--lib/AutoLoader.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AutoLoader.pm b/lib/AutoLoader.pm
index 2773a90f10..46e0a4be7a 100644
--- a/lib/AutoLoader.pm
+++ b/lib/AutoLoader.pm
@@ -73,7 +73,7 @@ sub import {
# 'auto/POSIX/autosplit.ix' (without the leading 'lib').
#
- (my $calldir = $callpkg) =~ s#::#/#;
+ (my $calldir = $callpkg) =~ s#::#/#g;
my $path = $INC{$calldir . '.pm'};
if (defined($path)) {
# Try absolute path name.