# from Julian Mehnle
# on Wednesday 23 May 2007 02:13 am:
>And what am I supposed to do in the meantime, until I can install a
> fixed M::B? build_requires => { Module => 'v0.002.1' }?
Yep. Either that or "v0.2.1" or "0.2.1" or 0.002001 should work.
I'm not sure you should be using version in your Build.PL anyway though.
Certainly, don't use it before Module::Build because you need to
declare the dependency.
use Module::Build; use version; # ok
use version; use Module::Build; # not ok
The latter doesn't give M::B a chance to fake the existence of
version.pm.
--Eric
--
"Left to themselves, things tend to go from bad to worse."
--Murphy's Corollary
---------------------------------------------------
http://scratchcomputing.com
---------------------------------------------------