From: <otm...@us...> - 2008-09-10 23:06:06
|
Revision: 5315 http://jython.svn.sourceforge.net/jython/?rev=5315&view=rev Author: otmarhumbel Date: 2008-09-10 23:06:04 +0000 (Wed, 10 Sep 2008) Log Message: ----------- reintroduced the possibility to suppress checkout in full-build (setting do.checkout to 'false' does not prevent from checking out, but not setting the property at all really does) so full-build behaviour should remain the same Modified Paths: -------------- trunk/jython/build.xml Modified: trunk/jython/build.xml =================================================================== --- trunk/jython/build.xml 2008-09-10 22:45:07 UTC (rev 5314) +++ trunk/jython/build.xml 2008-09-10 23:06:04 UTC (rev 5315) @@ -225,14 +225,12 @@ <property name="work.dir" value="${basedir}/../full_build/work" /> <property name="svn.checkout.dir" value="${work.dir}/checkout" /> <property name="jython.base.dir" value="${svn.checkout.dir}/${svn.code.dir}" /> - <property name="has.repositories.connection" value="true" /> <property name="python.exe" value="${python.home}/python" /> - <property name="do.checkout" value="false" /> - <!-- + <!-- set has.repositories.connection to false in ant.properties if you want to skip checkout --> + <property name="has.repositories.connection" value="true" /> <condition property="do.checkout" value="true"> <istrue value="${has.repositories.connection}" /> </condition> - --> <!-- classpath for svn ant task --> <path id="svn.classpath"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |