details:   /erp/devel/pi/rev/315eeeb8e204
changeset: 12094:315eeeb8e204
user:      Stefan Hühner <stefan.huehner <at> openbravo.com>
date:      Wed May 11 12:45:32 2011 +0200
summary:   Fixed 17115: Fix smartbuild on windows
Change related to 8436 did use '' as value for an now unused parameter which
works fine on linux (its an parameter with an empty value). However on windows
this parameter is ignored so all following parameters shift they position on to
the left breaking their use (as their index changes).
Fix that by using some non-empty dummy value in place for the unusued parameter.

diffstat:

 src/build.xml |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 83fbe0f0716a -r 315eeeb8e204 src/build.xml
--- a/src/build.xml     Wed May 11 10:32:32 2011 +0200
+++ b/src/build.xml     Wed May 11 12:45:32 2011 +0200
@@ -411,7 +411,7 @@
   
   <target name="wad" depends="init, wadvalidation">
     <java classname="org.openbravo.wad.Wad" jvm="${env.JAVA_HOME}/bin/java" 
fork="yes" maxmemory="${build.maxmemory}" failonerror="true">
-      <arg line="'${base.config}' '${tab}' 
'${build.AD}/org/openbravo/erpWindows' '${build.AD}/org/openbravo/erpCommon' 
'${build.sqlc}/src' '${webTab}' 
'${build.AD}/org/openbravo/erpCommon/ad_actionButton' '${base.design}' 
'${base.translate.structure}' '' '..' '${attach.path}' '${web.url}' 
'${base.src}' '${complete}' '${module}' 'noquick'" />
+      <arg line="'${base.config}' '${tab}' 
'${build.AD}/org/openbravo/erpWindows' '${build.AD}/org/openbravo/erpCommon' 
'${build.sqlc}/src' '${webTab}' 
'${build.AD}/org/openbravo/erpCommon/ad_actionButton' '${base.design}' 
'${base.translate.structure}' 'dummyValueUnused' '..' '${attach.path}' 
'${web.url}' '${base.src}' '${complete}' '${module}' 'noquick'" />
       <classpath refid="wad.class.path" />
       <syspropertyset>
          <propertyref name="java.security.egd" />
@@ -422,7 +422,7 @@
 
   <target name="wad.quick" depends="init, wadvalidation">
     <java classname="org.openbravo.wad.Wad" jvm="${env.JAVA_HOME}/bin/java" 
fork="yes" maxmemory="${build.maxmemory}">
-      <arg line="'${base.config}' '${tab}' 
'${build.AD}/org/openbravo/erpWindows' '${build.AD}/org/openbravo/erpCommon' 
'${build.sqlc}/src' '${webTab}' 
'${build.AD}/org/openbravo/erpCommon/ad_actionButton' '${base.design}' 
'${base.translate.structure}' '' '..' '${attach.path}' '${web.url}' 
'${base.src}' '${complete}' '${module}' 'quick'" />
+      <arg line="'${base.config}' '${tab}' 
'${build.AD}/org/openbravo/erpWindows' '${build.AD}/org/openbravo/erpCommon' 
'${build.sqlc}/src' '${webTab}' 
'${build.AD}/org/openbravo/erpCommon/ad_actionButton' '${base.design}' 
'${base.translate.structure}' 'dummyValueUnused' '..' '${attach.path}' 
'${web.url}' '${base.src}' '${complete}' '${module}' 'quick'" />
       <classpath refid="wad.class.path" />
       <syspropertyset>
          <propertyref name="java.security.egd" />

------------------------------------------------------------------------------
Achieve unprecedented app performance and reliability
What every C/C++ and Fortran developer should know.
Learn how Intel has extended the reach of its next-generation tools
to help boost performance applications - inlcuding clusters.
http://p.sf.net/sfu/intel-dev2devmay
_______________________________________________
Openbravo-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-commits

Reply via email to