You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Alexey Varlamov (JIRA)" <ji...@apache.org> on 2007/10/11 11:26:50 UTC

[jira] Assigned: (HARMONY-4917) [build] Bug in detecting svn.root

     [ https://issues.apache.org/jira/browse/HARMONY-4917?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Varlamov reassigned HARMONY-4917:
----------------------------------------

    Assignee: Alexey Varlamov

> [build] Bug in detecting svn.root
> ---------------------------------
>
>                 Key: HARMONY-4917
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4917
>             Project: Harmony
>          Issue Type: Bug
>          Components: build - test - ci
>            Reporter: Vasily Chekalkin
>            Assignee: Alexey Varlamov
>
> Revision 583358 of http://svn.apache.org/repos/asf/harmony/enhanced/trunk/build.xml contains bug, that prevent build without specifying svn.root explicity.
> <condition property="svn.root  value="${svn.root.tmp}"> should be inverted.
> To something like this :-)
> @@ -737,7 +737,9 @@
>          <property name="harmony.long.version" value="${svn.info}" />
>  
>          <condition property="svn.root" value="${svn.root.tmp}" >
> -            <equals arg1="${svn.rc}" arg2="0" />
> +            <not>
> +                <equals arg1="${svn.rc}" arg2="0" />
> +            </not>
>          </condition>
>  
>          <!-- default SVN URLs -->

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.