Re: [Module::Build] Archive::Tar file format
Status: Beta
Brought to you by:
kwilliams
|
From: Glenn L. <pe...@ne...> - 2004-01-08 06:42:28
|
On approximately 1/7/2004 9:15 PM, came the following characters from
the keyboard of Randy W. Sims:
> On 1/8/2004 12:04 AM, Randy W. Sims wrote:
>
>> +sub _varchname {
>> +# copied from PPM.pm
>> + my $varchname = $Config{archname};
>> + # Append "-5.8" to architecture name for Perl 5.8 and later
>> + if (length($^V) && ord(substr($^V,1)) >= 8) {
>> + $varchname .= sprintf("-%d.%d", ord($^V), ord(substr($^V,1)));
>> + }
>> +}
>
>
> Of course there should be a return $varchname at the end of that sub.
So the patch.bat in Perl Power Tools 0.12 seemed to do the job... but
produced a bunch of funny warnings about printing to a NULL filehandle.
Anyway, diff -u on the results reproduced the original patch, so I
think it did the desired patching. Then I added the return, and rebuilt
the .ppd. Seems to be acceptable to PPM now.
OF course, PPM still doesn't do anything... this version didn't even
talk about file 14/14.
--
Glenn -- http://nevcal.com/
===========================
The best part about procrastination is that you are never bored,
because you have all kinds of things that you should be doing.
|