I updated my Makefile.PL and I'm first running perl Make.PL, then make catalyst_par Any idea what could going wrong or how I would debug this. I've included my Makefile.PL below.
use inc::Module::Install; name 'MediaWords'; all_from 'lib/MediaWords.pm'; requires 'Catalyst::Runtime' => '5.80022'; requires 'Catalyst::Plugin::ConfigLoader'; requires 'Catalyst::Plugin::Static::Simple'; requires 'Catalyst::Action::RenderView'; requires 'Catalyst::Plugin::Unicode'; requires 'Catalyst::Plugin::Session::Store::FastMmap'; requires 'Catalyst::Plugin::ConfigLoader'; requires 'Catalyst::Plugin::Config::Defaults'; requires 'Catalyst::Plugin::Static::Simple'; requires 'Catalyst::Plugin::Session'; requires 'Catalyst::Plugin::Session::State::Cookie'; requires 'Catalyst::Plugin::StackTrace'; requires 'YAML'; # This should reflect the config file format you'v +e chosen # See Catalyst::Plugin::ConfigLoader for supported + formats requires 'Moose'; requires 'namespace::autoclean'; requires 'Config::General'; test_requires 'Test::More' => '0.88'; catalyst_par_core(); catalyst_par(); catalyst_par_engine('CGI'); catalyst_par_options('--verbose=2'); catalyst; install_script glob('script/*.pl'); auto_install; WriteAll;

In reply to Re^2: PAR and Catalyst -- make: *** [catalyst_par] Error 2 by Anonymous Monk
in thread PAR and Catalyst -- make: *** [catalyst_par] Error 2 by dlarochelle

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.