Subject: | FW: [PATCH lib/ExtUtils/t/build_man.t] installman3dir is null |
Date: | Tue, 21 Nov 2006 17:43:32 -0000 |
To: | <bug-ExtUtils-MakeMaker [...] rt.cpan.org> |
From: | "Robin Barker" <Robin.Barker [...] npl.co.uk> |
Original patch set to perl porters.
Robin
Show quoted text
-----Original Message-----
From: Robin Barker [mailto:Robin.Barker@npl.co.uk]
Sent: 21 November 2006 16:49
To: Perl Porters
Subject: [PATCH lib/ExtUtils/t/build_man.t] installman3dir is null
Test 4 of lib/ExtUtils/t/build_man.t fails because I configured with -Dman3dir=none
This patch fixes the test (rather simplistically).
Robin
--- lib/ExtUtils/t/build_man.t.orig Tue Sep 12 15:53:10 2006
+++ lib/ExtUtils/t/build_man.t Tue Nov 21 16:44:33 2006
@@ -36,7 +36,12 @@
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',
End of patch
-------------------------------------------------------------------
This e-mail and any attachments may contain confidential and/or
privileged material; it is for the intended addressee(s) only.
If you are not a named addressee, you must not use, retain or
disclose such information.
NPL Management Ltd cannot guarantee that the e-mail or any
attachments are free from viruses.
NPL Management Ltd. Registered in England and Wales. No: 2937881
Registered Office: Serco House, 16 Bartley Wood Business Park,
Hook, Hampshire, United Kingdom RG27 9UY
-------------------------------------------------------------------
-------------------------------------------------------------------
This e-mail and any attachments may contain confidential and/or
privileged material; it is for the intended addressee(s) only.
If you are not a named addressee, you must not use, retain or
disclose such information.
NPL Management Ltd cannot guarantee that the e-mail or any
attachments are free from viruses.
NPL Management Ltd. Registered in England and Wales. No: 2937881
Registered Office: Serco House, 16 Bartley Wood Business Park,
Hook, Hampshire, United Kingdom RG27 9UY
-------------------------------------------------------------------