[Module-build-checkins] Module-Build/lib/Module/Build Cookbook.pm,1.20,1.21
Status: Beta
Brought to you by:
kwilliams
From: Randy W. S. <si...@us...> - 2006-03-04 00:42:53
|
Update of /cvsroot/module-build/Module-Build/lib/Module/Build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7301/lib/Module/Build Modified Files: Cookbook.pm Log Message: Incorporated code from the 'pl2bat' utility distributed with Perl to avoid shell quoting insufficiencies and differences in various flavors of Windows. Updated documentation to give examples of invoking builds under Windows. Index: Cookbook.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Cookbook.pm,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- Cookbook.pm 7 Jan 2006 16:59:33 -0000 1.20 +++ Cookbook.pm 4 Mar 2006 00:42:45 -0000 1.21 @@ -44,12 +44,13 @@ ./Build test ./Build install -If you're on Windows, you'll probably do something like this: +If you're on Windows where the current directory is always searched +first for scripts, you'll probably do something like this: perl Build.PL - .\Build - .\Build test - .\Build install + Build + Build test + Build install On the old Mac OS (version 9 or lower) using MacPerl, you can double-click on the F<Build.PL> script to create the F<Build> script, @@ -83,7 +84,7 @@ probably best to supply a "traditional" F<Makefile.PL>. The C<Module::Build::Compat> module has some very helpful tools for keeping a F<Makefile.PL> in sync with a F<Build.PL>. See its -documentation, and also the C<create_makefile_pl> parameter to the +documentation, and also the C<create_makefile_pl> parameter to the C<< Module::Build->new() >> method. |