Author: ben
Date: 2007-11-27 18:36:58 -0800 (Tue, 27 Nov 2007)
New Revision: 7400

Modified:
   openlaszlo/trunk/build.xml
Log:
Change 20071127-ben-H by [EMAIL PROTECTED] on 2007-11-27 17:38:51 PST
    in /Users/ben/src/svn/openlaszlo/trunk-work-11-27-07-noon
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: More work to unbreak the build

Bugs Fixed: broken nightly build 

Technical Reviewer: ptw (pending)
QA Reviewer: mkratt (pending)

Documentation:
On the nightly build machines, the working directory is different from 
LPS_HOME. 
The doc build task was trying to execute the doc build in the directory named 
./docs/src.  That works when you invoke "ant doc" from $LPS_HOME, but not when
you invoke "ant doc" from another directory. This change explicitly sets the
directory in which to invoke the doc build to be $LPS_HOME/docs/src. 

Tests:
The next nightly build should work, and build docs. 




Modified: openlaszlo/trunk/build.xml
===================================================================
--- openlaszlo/trunk/build.xml  2007-11-28 01:45:05 UTC (rev 7399)
+++ openlaszlo/trunk/build.xml  2007-11-28 02:36:58 UTC (rev 7400)
@@ -616,7 +616,7 @@
             msgTask.setMessage("------- skipping doc build because the doc 
doesn't build well on windows ------- ");
             msgTask.execute();             
         } else {
-            var docSourceDir = new java.io.File("docs/src"); 
+            var docSourceDir = new java.io.File(lps.getProperty("basedir") + 
"/docs/src"); 
             var docSourcePath = docSourceDir.getAbsolutePath();
             msgTask.setMessage("-------  main build.xml is going to call build 
in " + docSourcePath + "-----" );
             msgTask.execute(); 


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to