Re: [ID 20000525.003] perldoc fails when Makefile.PL is in cwd
Gisle Aas [Fri, 9 Jun 2000 20:00:11 +0000 (22:00 +0200)]
Message-ID: <m3n1kud9as.fsf@eik.g.aas.no>

p4raw-id: //depot/perl@6887

utils/perldoc.PL

index c7e9970..dc145e3 100644 (file)
@@ -203,7 +203,7 @@ if (-f "Makefile.PL") {
     eval q{ use lib qw(. lib); 1; } or die;
 
     # don't add if superuser
-    if ($< && $>) {   # don't be looking too hard now!
+    if ($< && $> && -f "blib") {   # don't be looking too hard now!
        eval q{ use blib; 1 };
        warn $@ if $@ && $opt_v;
     }