Skip Menu |

This queue is for tickets about the ExtUtils-MakeMaker CPAN distribution.

Report information
The Basics
Id: 23526
Status: resolved
Priority: 0/
Queue: ExtUtils-MakeMaker

People
Owner: Nobody in particular
Requestors: Robin.Barker [...] npl.co.uk
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 6.31
Fixed in: (no value)



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 -------------------------------------------------------------------
Subject: RE: [rt.cpan.org #23526] AutoReply: FW: [PATCH lib/ExtUtils/t/build_man.t] installman3dir is null
Date: Wed, 22 Nov 2006 09:59:06 -0000
To: <bug-ExtUtils-MakeMaker [...] rt.cpan.org>
From: "Robin Barker" <Robin.Barker [...] npl.co.uk>
Patch resubmitted as attachment to preserve white space. Robin ------------------------------------------------------------------- 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 -------------------------------------------------------------------

Message body is not shown because sender requested not to inline it.

6.32 fixes this by localizing $Config{installman3dir} and putting in its desired values. There's probably more issues in the tests like this and a full %Config test isolation would be nice.