[Laszlo-checkins] r7219 - openlaszlo/trunk/docs/src
ben@openlaszlo.org
ben at openlaszlo.org
Mon Nov 12 14:50:25 PST 2007
Author: ben
Date: 2007-11-12 14:50:21 -0800 (Mon, 12 Nov 2007)
New Revision: 7219
Modified:
openlaszlo/trunk/docs/src/build.xml
Log:
Change 20071112-ben-d by ben at slim.local on 2007-11-12 10:58:41 PST
in /Users/ben/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Don't fail the build just because we can't find an unused index file.
Bugs Fixed: Unbreak doc build.
Technical Reviewer: mkratt (pending)
QA Reviewer: mkratt (pending)
Documentation:
A step in the build tries to copy the docbook-generated index into an
out-of-the-way file. If that file isn't there, don't freak out, just
log an error and carry on.
I'm not sure *why* the source file for the copy isn't there, but
this is a quick patch to fix the build.
Release Notes:
Details:
This was the bug:
reference.frameset.generate:
[echo] ***gonna copy in reference frameset ***
[copy] Copying 1 file to C:\cygwin\home\mamye\src\svn\openlaszlo\trunk\docs\reference
[copy] Copying C:\cygwin\home\mamye\src\svn\openlaszlo\trunk\docs\src\reference\navbuilder\index-generated.html to C:\cygwin\home\mamye\src\svn\openlaszlo\trunk\docs\reference\index-generated.html
BUILD FAILED
C:\cygwin\home\mamye\src\svn\openlaszlo\trunk\build.xml:599: The following error occurred while executing this line:
C:\cygwin\home\mamye\src\svn\openlaszlo\trunk\docs\src\build.xml:765: Warning: Could not find file C:\cygwin\home\mamye\src\svn\openlaszlo\trunk\docs\reference\index.html to copy.
Tests:
Modified: openlaszlo/trunk/docs/src/build.xml
===================================================================
--- openlaszlo/trunk/docs/src/build.xml 2007-11-12 22:38:05 UTC (rev 7218)
+++ openlaszlo/trunk/docs/src/build.xml 2007-11-12 22:50:21 UTC (rev 7219)
@@ -760,7 +760,7 @@
todir="${reference.output.dir}">
</copy>
<!-- Tuck away the docbook-generated index, so we can examine it -->
- <copy
+ <copy failonerror="false"
file="${reference.output.dir}/index.html"
tofile="${reference.output.dir}/index-docbook.html">
</copy>
More information about the Laszlo-checkins
mailing list