Confirmed
$ module_new dist MB::Module::Name --make=MB [debug] set root to ~/dev/tmp [info] created MB-Module-Name/trunk [info] created MB-Module-Name/tags [info] created MB-Module-Name/branch [info] changed directory to MB-Module-Name/trunk [debug] set root to ~/dev/tmp/MB-Module-Name/trunk [info] created Build.PL [info] created README [info] created Changes [info] created MANIFEST.SKIP [info] created t [info] created t/00_load.t [info] created t/99_pod.t [info] created t/99_podcoverage.t [info] created lib/MB/Module [info] created lib/MB/Module/Name.pm Added to MANIFEST: Build.PL Added to MANIFEST: Changes Added to MANIFEST: lib/MB/Module/Name.pm Added to MANIFEST: MANIFEST Added to MANIFEST: README Added to MANIFEST: t/00_load.t Added to MANIFEST: t/99_pod.t Added to MANIFEST: t/99_podcoverage.t [info] updated manifest $ cd MB-Module-Name/trunk $ perl Build.PL --pi --PIE --Cake Checking whether your kit is complete... Looks good Checking prerequisites... Looks good Creating new 'Build' script for 'MB-Module-Name' version '0.01' $ grep -r Cake . ./_build/build_params: 'Cake' => undef, $ grep -r -i pi . ./_build/build_params: 'pi' => '--PIE' ./_build/build_params: 'extra_compiler_flags' => [], $ perl -MData::Dumper -le " my $conf = do q!./_build/build_params!; pr +int Dumper($$conf[0]) $VAR1 = { 'Cake' => undef, 'ARGV' => [], 'pi' => '--PIE' }; $
Please note that Module::Build reserves all lowercase parameters for its own use. See also module_new.

In reply to Re^2: passing args to tests from Module::Build by Anonymous Monk
in thread passing args to tests from Module::Build by cutlass2006

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.