From 43506a616735d616e03d277d64fbae1e864024bf Mon Sep 17 00:00:00 2001 From: Spider Boardman Date: Sun, 16 Mar 1997 02:21:35 -0500 Subject: [PATCH] 3_93 doesn't install pods My patch (which is in _93) broke installing .pod files. At least, I think it's my fault. Anyway, here's the fix. p5p-msgid: 199703160721.CAA08339@Orb.Nashua.NH.US --- installperl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installperl b/installperl index 1267f49..ee2c07c 100755 --- a/installperl +++ b/installperl @@ -208,7 +208,7 @@ if (! $versiononly) { # Install pod pages. Where? I guess in $installprivlib/pod. -if (! $versiononly && !($installprivlib =~ m/\Q$]/)) { +if (! ($versiononly && !($installprivlib =~ m/\Q$]/))) { mkpath("${installprivlib}/pod", 1, 0777); foreach $file (@pods) { # $file is a name like pod/perl.pod -- 2.7.4