Skip Menu |

This queue is for tickets about the PPerl CPAN distribution.

Report information
The Basics
Id: 2070
Status: new
Priority: 0/
Queue: PPerl

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.23
Fixed in: (no value)



Subject: perl path check is unportable
The following like is unneccessarilly not portable chomp(my $V = `$perl_path -MConfig -le 'print Config->myconfig'`); The following will suffice chomp(my $V = `$perl_path -MConfig -le print(Config::myconfig()) `);
Date: Mon, 10 Feb 2003 08:27:57 +0000
Subject: Re: [cpan #2070] perl path check is unportable
From: Matt Sergeant <matt [...] sergeant.org>
To: bug-PPerl [...] rt.cpan.org
RT-Send-Cc:
On Monday, Feb 10, 2003, at 07:53 Europe/London, Guest via RT wrote: Show quoted text
> > This message about PPerl was sent to you by guest <> via rt.cpan.org > > Full context and any attached attachments can be found at: > <URL: https://rt.cpan.org/Ticket/Display.html?id=2070 > > > The following like is unneccessarilly not portable > chomp(my $V = `$perl_path -MConfig -le 'print Config->myconfig'`); > > The following will suffice > > chomp(my $V = `$perl_path -MConfig -le print(Config::myconfig()) `);
OK, but out of curiosity - not portable to where? If PPerl worked on Windows I'd be shocked beyond belief, which is why I ask. Matt.