p4raw-id: //depot/perl@31173
# TEST_INSTALL_DIR_BIN,
# TEST_INSTALL_DIR_MAN1,
# TEST_INSTALL_DIR_MAN3,
- ], 1 );
+ ], ( $ENV{PERL_CORE} ? 0 : 1 ) );
return $conf;
};
# TEST_INSTALL_DIR_BIN,
# TEST_INSTALL_DIR_MAN1,
# TEST_INSTALL_DIR_MAN3,
- ], 1 );
+ ], 0 ); # DO NOT be verbose under perl core -- makes tests fail
}
}
for my $dir ( @$dirs ) {
+ ### no point if it doesn't exist;
+ next unless -d $dir;
+
my $dh;
opendir $dh, $dir or die "Could not open basedir '$dir': $!";
while( my $file = readdir $dh ) {
### directory, rmtree it
if( -d $path ) {
- print "Deleting directory '$path'\n" if $verbose;
+ print "# Deleting directory '$path'\n" if $verbose;
eval { rmtree( $path ) };
warn "Could not delete '$path' while cleaning up '$dir'" if $@;