How to pass the arguments of Makefile.PL using cpanm

how-to-pass-the-arguments-of-makefile.pl-using-cpanm

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"

For Programming Beginners

cpanm is a command tool to install Perl modules from CPAN.

Total
0
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
how-to-use-pytorch-from-perl?

How to use PyTorch from Perl?

Next Post
slack-next-gen-platform-–-external-api-calls

Slack Next-gen Platform – External API Calls

Related Posts
mariadb-109-on-openbsd-7.3:-インストール

MariaDB 10.9 on OpenBSD 7.3: インストール

はじめに MariaDB は広く使われているリレーショナル (関係) データベース管理システム (RDBMS) の一つです。MySQL から、オリジナルの開発者たちの一部によってフォークされました。 オープンソースであり、GNU GPL 2 で ライセンスされています。長い歴史と管理維持のための知見の蓄積があり、コミュニティでも企業でも使えます。 堅牢でクリーンなオペレーティング・システムである OpenBSD へのインストールは容易です。パッケージ管理 (英語) システム…
Read More
print-tree4

print tree4

!/usr/bin/env bash Linux-only Unicode tree with sizes and total files print_tree() { local dir=”$1″ local prefix=”${2:-}” local maxdepth=”${3:-0}”…
Read More