On Dec 12, 2007 5:22 PM, Adam Kennedy <[EMAIL PROTECTED]> wrote:
> A->B) Dependencies are determined by running Build.PL
>
> B->A) Build.PL has a dependency on Module::Build.
>
> The code used to determine dependencies itself has a critical dependency it
> can't work without.
Didn't this get fixed by Module::Build using its own 'lib' directory
in Build.PL?
I.e., from M::B 0.2808:
>use File::Spec 0.82;
>use lib File::Spec->catdir('lib'); # use our self to install
>use lib File::Spec->catdir('t', 'lib'); # use bundled Test::More
David