samuel.manzer1990 has asked for the wisdom of the Perl Monks concerning the following question:
If I run the build.PL manually in the shell, as follows, it works and installs to that directory:install --install_base /Users/smanzer/
But if I try using the internal methods to do it, it fails because it tries to install to "/":perl Build.PL ./Build ./Build test ./Build install
I would really appreciate it if someone could tell me why dispatch() won't read my configuration file.my $build = Module::Build->new( module_name => $mod_name, license => 'perl', use_rcfile => 1, ); $build->create_build_script; $build->dispatch('build'); $build->dispatch('test', verbose => 1); $build->dispatch('install');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Module::Build configuration problem
by Anonymous Monk on Nov 10, 2009 at 22:54 UTC | |
by samuel.manzer1990 (Initiate) on Nov 11, 2009 at 12:55 UTC |