Skip Menu |

This queue is for tickets about the Getopt-Euclid CPAN distribution.

Report information
The Basics
Id: 14164
Status: resolved
Priority: 0/
Queue: Getopt-Euclid

People
Owner: DCONWAY [...] cpan.org
Requestors: gmax [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.0.4
Fixed in: (no value)



Subject: attempt to load the wrong module (POD::Text instead of Pod::Text)
Euclid.pm, line 539, instead of if (-t *STDOUT and eval { require POD::Text }) { should be if (-t *STDOUT and eval { require Pod::Text }) { After this change, both the "--help" and "--man" options work as expected.
Date: Thu, 18 Aug 2005 09:13:19 -0700
From: Damian Conway <damian [...] conway.org>
To: bug-Getopt-Euclid [...] rt.cpan.org
Subject: Re: [cpan #14164] attempt to load the wrong module (POD::Text instead of Pod::Text)
RT-Send-Cc:
Show quoted text
> if (-t *STDOUT and eval { require POD::Text }) { > > should be > if (-t *STDOUT and eval { require Pod::Text }) { > > After this change, both the "--help" and "--man" options work as expected.
Many thanks. The lesson here being: don't test on a semi-case-insensitive operating system! %-) Damian
[guest - Mon Aug 15 01:08:40 2005]: Show quoted text
> Euclid.pm, line 539, instead of > if (-t *STDOUT and eval { require POD::Text }) { > > should be > if (-t *STDOUT and eval { require Pod::Text }) { > > After this change, both the "--help" and "--man" options work as > expected.
The perldoc in the 'Standard Arguments' section should also be changed from POD::Text to Pod::Text.
Date: Wed, 05 Oct 2005 11:08:35 +1000
From: Damian Conway <damian [...] conway.org>
To: bug-Getopt-Euclid [...] rt.cpan.org
Subject: Re: [cpan #14164] attempt to load the wrong module (POD::Text instead of Pod::Text)
RT-Send-Cc:
Show quoted text
>>Euclid.pm, line 539, instead of >>if (-t *STDOUT and eval { require POD::Text }) { >> >>should be >>if (-t *STDOUT and eval { require Pod::Text }) { >> >>After this change, both the "--help" and "--man" options work as >> expected.
Patched. Thanks! Damian
Resolved in latest release on CPAN. Thanks.