The command cpanm --installdeps . to install dependent modules executes perl Makefile.PL.
How to pass the arguments of perl Makefile.PL executed by cpanm.
The answer is using the --configure-args option.
cpanm --installdeps . --configure-args="--meta"
Top comments (0)