summaryrefslogtreecommitdiff
path: root/lib/ExtUtils
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-07-28 15:41:11 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-07-28 15:41:11 +0000
commit71ad7795db6b8d545a629fdaf0efbb677f2f2921 (patch)
tree2d0e642e1a034d6b872d69cbb05a22b121cfe1e5 /lib/ExtUtils
parent4365a96142729d7b3a9c9c8ae27b2ba9005938cf (diff)
downloadperl-71ad7795db6b8d545a629fdaf0efbb677f2f2921.tar.gz
fix typo that caused INSTALLPRIVLIB to have doubled 'perl5'
p4raw-id: //depot/perl@3811
Diffstat (limited to 'lib/ExtUtils')
-rw-r--r--lib/ExtUtils/MM_Unix.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm
index 8d5646bad7..855a703567 100644
--- a/lib/ExtUtils/MM_Unix.pm
+++ b/lib/ExtUtils/MM_Unix.pm
@@ -1792,7 +1792,7 @@ usually solves this kind of problem.
$self->prefixify($install_variable,$configure_prefix,$replace_prefix);
}
my $funkylibdir = $self->catdir($configure_prefix,"lib","perl5");
- $funkylibdir = '' unless -d $funklibdir;
+ $funkylibdir = '' unless -d $funkylibdir;
$search_prefix = $funkylibdir || $self->catdir($configure_prefix,"lib");
if ($self->{LIB}) {
$self->{INSTALLPRIVLIB} = $self->{INSTALLSITELIB} = $self->{LIB};
@@ -1817,7 +1817,7 @@ usually solves this kind of problem.
}
}
my $funkymandir = $self->catdir($configure_prefix,"lib","perl5","man");
- $funkymandir = '' unless -d $funkmandir;
+ $funkymandir = '' unless -d $funkymandir;
$search_prefix = $funkymandir || $self->catdir($configure_prefix,"man");
if (-d $self->catdir($self->{PREFIX},"lib","perl5", "man")) {
$replace_prefix = $self->catdir(qq[\$\(PREFIX\)],"lib", "perl5", "man");