Author: jleroux
Date: Sun Aug 11 07:19:40 2013
New Revision: 1512888
URL:
http://svn.apache.org/r1512888Log:
Fixes wrong C/P in start and start-batch targets memory.max.param property
Modified:
ofbiz/branches/release12.04/build.xml
Modified: ofbiz/branches/release12.04/build.xml
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release12.04/build.xml?rev=1512888&r1=1512887&r2=1512888&view=diff==============================================================================
--- ofbiz/branches/release12.04/build.xml (original)
+++ ofbiz/branches/release12.04/build.xml Sun Aug 11 07:19:40 2013
@@ -381,7 +381,7 @@ under the License.
description="Start OFBiz">
<java jar="ofbiz.jar" fork="true">
<jvmarg value="${memory.initial.param}"/>
- <jvmarg value="${pos.memory.max.param}"/>
+ <jvmarg value="${memory.memory.max.param}"/>
<jvmarg value="${memory.maxpermsize.param}"/>
</java>
</target>
@@ -389,7 +389,7 @@ under the License.
description="Start OFBiz as a separate process">
<java jar="ofbiz.jar" fork="true" spawn="true">
<jvmarg value="${memory.initial.param}"/>
- <jvmarg value="${pos.memory.max.param}"/>
+ <jvmarg value="${memory.memory.max.param}"/>
<jvmarg value="${memory.maxpermsize.param}"/>
</java>
</target>