> A possible change to my Build.PL is it'd start paying attention to
> @INC and blib/arch to find possibly not-actually-installed files.
>
> --- a/Build.PL
> +++ b/Build.PL
> @@ -39,11 +39,23 @@ my $build = Module::Build->new(
>
>      create_readme => 1,
>      dynamic_config => 1,
> -    include_dirs => [ Alien::Judy::inc_dirs() ],
> +    include_dirs => [
> +        Alien::Judy::inc_dirs(),
> +        (
> +            map { File::Spec->catdir( $_, 'Alien', 'Judy' ) }
> +            grep { m{blib/arch} }
> +            @INC
> +        ),
> +    ],
>
> Is this actually reasonable or the right thing?
>   
I believe the most reasonable approach would be to use
ExtUtils::Depends, though I don't know how well it applies to the
situation of an Alien:: module.

Vincent.

Reply via email to