in reply to Convincing Module::Install to put stuff in inc/

Now, I actually do have YAML::Tiny in 'inc' for pretty much all my recent distributions.

This is because Module::Install::TrustMetaYml requires it, via:

$self->include_deps('YAML::Tiny', 0);

You could try patching Module::Install::JSONMETA to do this, or you could write a small Module::Install plugin of your own which pulls in the YAML::Tiny dep and does nothing else.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Replies are listed 'Best First'.
Re^2: Convincing Module::Install to put stuff in inc/
by Oberon (Monk) on May 27, 2012 at 09:52 UTC
    You could try patching Module::Install::JSONMETA to do this, or you could write a small Module::Install plugin of your own which pulls in the YAML::Tiny dep and does nothing else.

    Oooh, good backup plan in case the configure_requires doesn't work for any reason. Thanx!