Re: [Module::Build] Ready for 0.22?
Status: Beta
Brought to you by:
kwilliams
|
From: Randy W. S. <Ra...@Th...> - 2004-01-10 08:10:23
|
On 1/9/2004 12:29 PM, Ken Williams wrote:
> Hey,
>
> Any outstanding issues before I release 0.22 to CPAN? If there's still
> a significant CVS lag, here's the list of changes since the last beta:
I was hasty and didn't run the test suite on that last patch I sent to
fix the PPD stuff. This patch adjusts t/xs.t to use the versioned
archname string produced by PPMMaker.pm (which incidentally probably
should've been named PPDMaker.pm :).
$ diff -wu1 xs.t.orig xs.t
--- xs.t.orig 2004-01-10 02:24:34.561038400 -0500
+++ xs.t 2004-01-10 02:21:03.347328000 -0500
@@ -51,2 +51,3 @@
my $perl_version =
Module::Build::PPMMaker->_ppd_version($m->perl_version);
+ my $varchname = Module::Build::PPMMaker->_varchname($m->{config});
@@ -63,3 +64,3 @@
<OS NAME="$^O" />
- <ARCHITECTURE NAME="$Config{archname}" />
+ <ARCHITECTURE NAME="$varchname" />
<CODEBASE HREF="/path/to/codebase-xs" />
|