Update of /cvsroot/module-build/Module-Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7301
Modified Files:
Changes INSTALL
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: Changes
===================================================================
RCS file: /cvsroot/module-build/Module-Build/Changes,v
retrieving revision 1.431
retrieving revision 1.432
diff -u -d -r1.431 -r1.432
--- Changes 2 Mar 2006 21:28:09 -0000 1.431
+++ Changes 4 Mar 2006 00:42:43 -0000 1.432
@@ -2,6 +2,12 @@
0.27_08
+ - Due to shell quoting issues and differences in syntax between
+ various flavors of Windows, the code for the 'pl2bat' utility
+ distributed with Perl has been incorporated into M::B::P::Windows.
+ [Thanks to Dr Bean and Ron Savage for help testing and isolating
+ the problem.]
+
- Modify add_build_element() so that it only adds elements if they
don't already exist. [David Wheeler]
Index: INSTALL
===================================================================
RCS file: /cvsroot/module-build/Module-Build/INSTALL,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- INSTALL 16 Feb 2006 16:34:02 -0000 1.6
+++ INSTALL 4 Mar 2006 00:42:43 -0000 1.7
@@ -3,15 +3,17 @@
To install this module, just do:
perl Build.PL
+ ./Build
./Build test
./Build install (this step may need to be done as the superuser)
-For other operating systems that don't like the "./" syntax, like
-Windows-based systems, you can do:
+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 test
- perl Build install
+ Build
+ Build test
+ Build install
The important thing is that the "Build" script gets executed and that
you pass it the "test", "install", etc. arguments.
|