$NetBSD: patch-ad,v 1.2 2008/12/30 15:03:03 he Exp $

Perl in pkgsrc doesn't install or tweak perllocal.pod, so comment
out that test.

Also apply fix to test culled by following references from
http://rt.cpan.org/Public/Bug/Display.html?id=40698
Expected output is now only present when VERBINST=1.

--- t/INSTALL_BASE.t.orig	2008-10-10 04:28:25.000000000 +0200
+++ t/INSTALL_BASE.t
@@ -16,7 +16,7 @@ use strict;
 use File::Path;
 use Config;
 
-use Test::More tests => 21;
+use Test::More tests => 19;
 use MakeMaker::Test::Utils;
 use MakeMaker::Test::Setup::BFD;
 
@@ -48,7 +48,7 @@ ok( grep(/^Writing $makefile for Big::Du
 
 my $make = make_run();
 run("$make");   # this is necessary due to a dmake bug.
-my $install_out = run("$make install");
+my $install_out = run("$make install VERBINST=1");
 is( $?, 0, '  make install exited normally' ) || diag $install_out;
 like( $install_out, qr/^Installing /m );
 like( $install_out, qr/^Writing /m );
@@ -59,7 +59,7 @@ my @installed_files = 
   ('../dummy-install/lib/perl5/Big/Dummy.pm',
    '../dummy-install/lib/perl5/Big/Liar.pm',
    '../dummy-install/bin/program',
-   "../dummy-install/lib/perl5/$Config{archname}/perllocal.pod",
+#  "../dummy-install/lib/perl5/$Config{archname}/perllocal.pod",
    "../dummy-install/lib/perl5/$Config{archname}/auto/Big/Dummy/.packlist"
   );
 
