diff options
author | Robin Barker <RMBarker@cpan.org> | 2006-11-21 16:48:35 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-11-23 10:05:43 +0000 |
commit | bdd9a5d66f1cec83b81754b37c772cc5ede73afe (patch) | |
tree | 16bd13d0dabdd7d44d01046700679271ced385d2 /lib | |
parent | e9475de8c2ea6600ed3517594b1793ffd3a89f27 (diff) | |
download | perl-bdd9a5d66f1cec83b81754b37c772cc5ede73afe.tar.gz |
installman3dir is null
From: "Robin Barker" <Robin.Barker@npl.co.uk>
Message-ID: <2C2E01334A940D4792B3E115F95B7226120ABE@exchsvr1.npl.ad.local>
p4raw-id: //depot/perl@29357
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/t/build_man.t | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/ExtUtils/t/build_man.t b/lib/ExtUtils/t/build_man.t index b7ae8bb54b..1b92829156 100644 --- a/lib/ExtUtils/t/build_man.t +++ b/lib/ExtUtils/t/build_man.t @@ -36,7 +36,12 @@ ok( chdir 'Big-Dummy', "chdir'd to Big-Dummy" ) || ok( my $stdout = tie *STDOUT, 'TieOut' ); -{ +SKIP: { + use Config; + skip ("installman3dir is null", 1) + if !$Config{installman3dir} or + $Config{installman3dir} !~ /\S/ or + $Config{installman3dir} eq 'none'; my $mm = WriteMakefile( NAME => 'Big::Dummy', VERSION_FROM => 'lib/Big/Dummy.pm', |