fixed lib ant script base dir

This commit is contained in:
Jindra Petřík
2014-11-10 12:23:12 +01:00
parent 7bae86d034
commit 94c71446dd
+3 -3
View File
@@ -396,18 +396,18 @@
</target>
<target name="build_lib">
<ant antfile="${CORELIBSCRIPT}" target="build" inheritAll="false" />
<ant antfile="${CORELIBSCRIPT}" target="build" inheritAll="false" usenativebasedir="true"/>
<copy file="${CORELIBPATH}" todir="${LIBRARIESDIR}" />
</target>
<target name="clean_lib">
<ant antfile="${CORELIBSCRIPT}" target="clean" inheritAll="false" />
<ant antfile="${CORELIBSCRIPT}" target="clean" inheritAll="false" usenativebasedir="true" />
<delete file="${LIBRARIESDIR}/${CORELIBNAME}" />
</target>
<target name="test_lib">
<ant antfile="${CORELIBSCRIPT}" target="test" inheritAll="false" />
<ant antfile="${CORELIBSCRIPT}" target="test" inheritAll="false" usenativebasedir="true" />
</target>
<target name="build" depends="-loadversion,build_lib,-timestamp,-nightly-suffix,-nonightly-suffix,compile">