in reply to Re: PAR and Catalyst -- make: *** [catalyst_par] Error 2
in thread PAR and Catalyst -- make: *** [catalyst_par] Error 2

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;