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

[jira] Closed: (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 ]

Vasily Chekalkin closed HARMONY-4917.
-------------------------------------

    Resolution: Invalid

This is Fedora's 7 ant bug.

(I doesn't have this installation at the moment, but all issues were resolved with side installed ant and passing --noconfig parameter. Thanks to maashaa for advice.

Fedora's ant version 1.6.5. All other information about system available at https://issues.apache.org/jira/browse/HARMONY-4915.
)

> [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.