You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2013/05/14 00:30:25 UTC

svn commit: r1482125 - /ofbiz/trunk/framework/service/build.xml

Author: doogie
Date: Mon May 13 22:30:25 2013
New Revision: 1482125

URL: http://svn.apache.org/r1482125
Log:
FIX: I have no idea why an explicit <mkdir> is neeeded for build/rmi; in
all cases I could find, it was already auto-created.  It's only the
buildbot that is broken.

Modified:
    ofbiz/trunk/framework/service/build.xml

Modified: ofbiz/trunk/framework/service/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/build.xml?rev=1482125&r1=1482124&r2=1482125&view=diff
==============================================================================
--- ofbiz/trunk/framework/service/build.xml (original)
+++ ofbiz/trunk/framework/service/build.xml Mon May 13 22:30:25 2013
@@ -56,6 +56,7 @@ under the License.
     </target>
 
     <target name="rmi-jar" depends="stubs">
+        <mkdir dir="${build.dir}/rmi"/>
         <jar jarfile="${build.dir}/rmi/${name}-rmi.jar">
             <fileset dir="${build.dir}/classes" includes="**/GenericServiceException.class"/>
             <fileset dir="${build.dir}/classes" includes="**/GenericResultWaiter.class"/>