You should be able to do: perl Makefile.PL && make test
bah, that's just bad form ;)
Actually, it's not. Normally you do:
perl Makefile.PL && make && make test # test broken, fix test make test # test is still broken, fix test make test # etc
If you run 'make test' and the source have changed, make should be able to figure out that bring the 'all' target up to date. Otherwise, you may forget to run 'make' and will test an outdated version.
__________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
