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
If I have:
export PERL_CPANM_OPT='--configure-args=CCFLAGS="-I/some/path/include"'
when I do carton install and carton calls cpanm to install a module cpanm doesn't seem to see this setting.
carton install
If I install directly with cpanm it does.
The text was updated successfully, but these errors were encountered:
Carton overrides PERL_CPANM_OPT. There's currently no way to pass per-dist configuration flags in Carton.
Sorry, something went wrong.
So PR #199 would address this, correct? Although it would apply to every call to cpanm, not per-dist.
Ok, did some testing, #199 alone doesn't help because:
$cmd = $self->append_args($cmd, 'configure') if $depth == 0;
And depth always seems to be > 0 even if the module is listed in cpanfile (that is, not a sub-dependency) so the configure-args are never appended.
depth
cpanfile
No branches or pull requests
If I have:
when I do
carton install
and carton calls cpanm to install a module cpanm doesn't seem to see this setting.If I install directly with cpanm it does.
The text was updated successfully, but these errors were encountered: