Ignore:
Timestamp:
2009-04-22T20:12:26+02:00 (15 years ago)
Author:
guggis
Message:

fixing JOSM Ticket #2422 - When compiling tageditor, it tries to commit to svn

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/tageditor/build.xml

    r14520 r14696  
    6161        -->
    6262    <target name="init">
    63         <!-- make sure we increment the build number ... -->
    64         <buildnumber file="build.number" />     
    65        
    66         <!-- ... and check it back in -->
    67         <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
    68             <env key="LANG" value="C"/>
    69             <arg value="commit"/>
    70                 <arg value="--message"/>
    71             <arg value="increment build number"/>
    72             <arg value="build.number"/>
    73                 </exec>
    7463        <mkdir dir="${plugin.build.dir}"/>
    7564    </target>   
     
    129118        **********************************************************
    130119        -->     
    131     <target name="revision">
    132        
    133         <!-- extract the SVN revision information for file build.number -->
    134         <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
    135             <env key="LANG" value="C"/>
    136             <arg value="info"/>
    137             <arg value="--xml"/>
    138             <arg value="build.number"/>
    139         </exec>
     120    <target name="revision">           
     121        <!-- extract the SVN revision information  -->
     122        <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
     123                    <env key="LANG" value="C"/>
     124                    <arg value="info"/>
     125                    <arg value="--xml"/>
     126                    <arg value="."/>
     127        </exec>
    140128        <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
    141129        <delete file="REVISION"/>
Note: See TracChangeset for help on using the changeset viewer.