We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some distributions have custom Module::Build options that need to be applied, but cpm overrides the PERL_MB_OPT variable.
Module::Build
cpm
PERL_MB_OPT
For example, Params::Validate v1.29 doesn't recognize --pureperl_only, but does recognize --pp.
Params::Validate
--pureperl_only
--pp
I'd like to be able to do something equivalent to this:
PERL_MB_OPT=--pp cpan Params::Validate
Thanks, Diab
The text was updated successfully, but these errors were encountered:
For --pureperl-only, it is defined in The Lancaster Consensus.
--pureperl-only
Sorry, something went wrong.
Agreed, it's just that there are older modules which don't support it yet, so the ability to add options to Build.PL would be useful.
Actually, I thought cpm respected PERL_MM_OPT. But, it turns out that local::lib overwrite the environment variable.
No branches or pull requests
Some distributions have custom
Module::Build
options that need to be applied, butcpm
overrides thePERL_MB_OPT
variable.For example,
Params::Validate
v1.29 doesn't recognize--pureperl_only
, but does recognize--pp
.I'd like to be able to do something equivalent to this:
PERL_MB_OPT=--pp cpan Params::Validate
Thanks,
Diab
The text was updated successfully, but these errors were encountered: