[Laszlo-checkins] r9635 - openlaszlo/trunk/WEB-INF/lps/lfc
hqm@openlaszlo.org
hqm at openlaszlo.org
Fri Jun 13 09:51:23 PDT 2008
Author: hqm
Date: 2008-06-13 09:51:20 -0700 (Fri, 13 Jun 2008)
New Revision: 9635
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/build.xml
Log:
Change 20080613-hqm-5 by hqm at badtzmaru.home on 2008-06-13 08:30:19 EDT
in /Users/hqm/openlaszlo/trunk4
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: fix LFC build.xml to actually not build LFC for RUNTIME if build.lfc.runtime.RUNTIME is false
New Features:
Bugs Fixed:
Technical Reviewer: ptw
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
The javascript code in the LFC build.xml file was not checking if the value of build.lfc.runtime.XXX
was actually true or false.
Tests:
Before, when I set
build.lfc.runtime.swf7 = false
the LFC7 was still getting built; it doesn't build now.
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/build.xml
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/build.xml 2008-06-13 14:04:23 UTC (rev 9634)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/build.xml 2008-06-13 16:51:20 UTC (rev 9635)
@@ -228,7 +228,7 @@
// Check whether the options tell us to build this runtime at all
var buildThisRuntime = lfc.getProperty("build.lfc.runtime.swf" + v);
- if (buildThisRuntime != null) {
+ if (buildThisRuntime != null && buildThisRuntime != "false") {
var plain = LFCdir + "LFC" + v + ext;
if (!(new File(plain)).exists()) {
dobuild(plain, "swf" + v, shlibopt);
More information about the Laszlo-checkins
mailing list