Re: [Module::Build] ANNOUNCE: 0.21 released
Status: Beta
Brought to you by:
kwilliams
|
From: Randy W. S. <Ra...@Th...> - 2003-10-17 02:31:35
|
On 10/16/2003 8:20 PM, Ken Williams wrote:
> I'm applying a patch to do so, here's what it looks like.
>
> -Ken
>
> --- lib/Module/Build/Base.pm 16 Oct 2003 01:26:23 -0000 1.213
> +++ lib/Module/Build/Base.pm 17 Oct 2003 00:15:47 -0000 1.214
> @@ -1216,7 +1216,9 @@
> }
>
> return {} unless -d $dir;
> - return { map {$_, $_} @{ $self->rscan_dir($dir, qr{\.$type$}) } };
> + return { map {$_, $_}
> + map $self->localize_file_path($_),
> + @{ $self->rscan_dir($dir, qr{\.$type$}) } };
> }
>
> sub localize_file_path {
>
It's a good thing I got a late start--otherwise, I'd a had to do that. ;)
That fixed it.
Thanks,
Randy.
|