Update of /cvsroot/openinteract/OpenInteract2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17761
Modified Files:
build_bricks BUILDING_FROM_CVS
Log Message:
OIN-124: fix order of build and add 'use lib' to build_bricks
Index: build_bricks
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/build_bricks,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** build_bricks 8 Feb 2005 01:49:30 -0000 1.6
--- build_bricks 8 Feb 2005 12:30:50 -0000 1.7
***************
*** 7,10 ****
--- 7,11 ----
use strict;
+ use lib qw( lib );
use File::Basename qw( basename );
use MIME::Base64 qw( encode_base64 );
Index: BUILDING_FROM_CVS
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/BUILDING_FROM_CVS,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** BUILDING_FROM_CVS 8 Feb 2005 01:54:30 -0000 1.4
--- BUILDING_FROM_CVS 8 Feb 2005 12:30:51 -0000 1.5
***************
*** 10,15 ****
> cd /path/to/OpenInteract2-CVS
- > perl build_docs
> perl build_bricks
> perl Makefile.PL or perl Build.PL
> make or ./Build
--- 10,15 ----
> cd /path/to/OpenInteract2-CVS
> perl build_bricks
+ > perl build_docs
> perl Makefile.PL or perl Build.PL
> make or ./Build
***************
*** 31,50 ****
But you'll run into two problems building from CVS vs. from a
! distribution. The first is related to documentation and the second to
! inlined resource files used to build packages and websites.
!
!
! Problem: Docs
! ---------------
!
! The OI2::Manual namespace is generated using the 'build_docs' command:
!
! > cd /path/to/OpenInteract-CVS
! > ./build_docs (or 'perl build docs')
!
! This also generates the docs for the OI website -- see the newly
! created 'site/docs' for the HTML documentation. Note that it has SSI
! directives embedded in it, but that's easy to work around if you need
! to...
--- 31,36 ----
But you'll run into two problems building from CVS vs. from a
! distribution. The first is related to inlined resource files used to
! build packages and websites and the second to documentation.
***************
*** 93,96 ****
--- 79,96 ----
+ Problem: Docs
+ ---------------
+
+ The OI2::Manual namespace is generated using the 'build_docs' command:
+
+ > cd /path/to/OpenInteract-CVS
+ > ./build_docs (or 'perl build docs')
+
+ This also generates the docs for the OI website -- see the newly
+ created 'site/docs' for the HTML documentation. Note that it has SSI
+ directives embedded in it, but that's easy to work around if you need
+ to...
+
+
Problem: SPOPS
---------------
|