Subject: | [DOC PATCH] Module::Build |
--- Module/Build.pm.original Thu Jun 27 16:12:54 2002
+++ Module/Build.pm Thu Jun 27 16:20:40 2002
@@ -108,10 +108,10 @@
To install C<Module::Build>, and any other module that uses
C<Module::Build> for its installation process, do the following:
- perl Build.PL
- Build # this script is created by 'perl Build.PL'
- Build test
- Build install
+ perl Build.PL # 'Build.PL' script creates the 'Build' script
+ ./Build # ./ needed to ensure we're using this "Build" script
+ ./Build test # and not another one that happens to be in the PATH
+ ./Build install
This illustrates initial configuration and the running of three
'actions'. In this case the actions run are 'build' (the default