[Module-build-checkins] Module-Build/lib/Module Build.pm,1.209,1.210
Status: Beta
Brought to you by:
kwilliams
From: Randy W. S. <si...@us...> - 2006-03-04 00:42:51
|
Update of /cvsroot/module-build/Module-Build/lib/Module In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7301/lib/Module Modified Files: Build.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: Build.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build.pm,v retrieving revision 1.209 retrieving revision 1.210 diff -u -d -r1.209 -r1.210 --- Build.pm 2 Feb 2006 02:11:19 -0000 1.209 +++ Build.pm 4 Mar 2006 00:42:44 -0000 1.210 @@ -112,13 +112,13 @@ ./Build test ./Build install -Or, if you're on a platform (like DOS or Windows) that doesn't like +Or, if you're on a platform (like DOS or Windows) that doesn't require the "./" notation, you can do this: perl Build.PL - perl Build - perl Build test - perl Build install + Build + Build test + Build install =head1 DESCRIPTION |