Author: marrs
Date: Thu Mar 27 12:58:24 2014
New Revision: 1582283

URL: http://svn.apache.org/r1582283
Log:
Made paths absolute in workspace to really fixate the location.

Modified:
    ace/trunk/cnf/build-template.xml

Modified: ace/trunk/cnf/build-template.xml
URL: 
http://svn.apache.org/viewvc/ace/trunk/cnf/build-template.xml?rev=1582283&r1=1582282&r2=1582283&view=diff
==============================================================================
--- ace/trunk/cnf/build-template.xml (original)
+++ ace/trunk/cnf/build-template.xml Thu Mar 27 12:58:24 2014
@@ -91,13 +91,13 @@
 
        <target name="install-ecj-eclipse" if="eclipse.home">
                <echo message="Eclipse is installed at ${eclipse.home}." />
-               <mkdir dir="ecj" />
-               <copy tofile="ecj/ecj.jar">
+               <mkdir dir="${workspacedir}/cnf/ecj" />
+               <copy tofile="${workspacedir}/cnf/ecj/ecj.jar">
                        <fileset dir="${eclipse.home}/plugins">
                                <include name="org.eclipse.jdt.core_*.jar" />
                        </fileset>
                </copy>
-               <unzip src="ecj/ecj.jar" dest="ecj">
+               <unzip src="${workspacedir}/cnf/ecj/ecj.jar" 
dest="${workspacedir}/cnf/ecj">
                    <patternset>
                        <include name="jdtCompilerAdapter.jar" />
                    </patternset>


Reply via email to