OSDN Git Service

Rename the modifier target only to nodeps.
authorXavier Ducrohet <xav@android.com>
Sat, 15 Oct 2011 02:04:34 +0000 (19:04 -0700)
committerXavier Ducrohet <xav@android.com>
Sat, 15 Oct 2011 02:04:34 +0000 (19:04 -0700)
Change-Id: I26dc7be4f06758c0be7f4dbcbc358b805ba44945

files/ant/build.xml

index 16ae6a1..f5c1e30 100644 (file)
     <!-- ******************************************************* -->
 
     <!-- target to disable building dependencies -->
-    <target name="only">
+    <target name="nodeps">
         <property name="dont.build.deps" value="true" />
     </target>
 
                 <subant failonerror="true"
                         buildpathref="project.libraries"
                         antfile="build.xml">
-                    <target name="only" />
+                    <target name="nodeps" />
                     <target name="${build.target}" />
                 </subant>
                 <echo></echo>
         <echo>              (tested projects and libraries)at the same time</echo>
         <echo>              using: 'ant all clean'</echo>
         <echo>   debug:     Builds the application and signs it with a debug key.</echo>
-        <echo>              The 'only' target can be used to only build the</echo>
+        <echo>              The 'nodeps' target can be used to only build the</echo>
         <echo>              current project and ignore the libraries using:</echo>
-        <echo>              'ant only debug'</echo>
+        <echo>              'ant nodeps debug'</echo>
         <echo>   release:   Builds the application. The generated apk file must be</echo>
         <echo>              signed before it is published.</echo>
-        <echo>              The 'only' target can be used to only build the</echo>
+        <echo>              The 'nodeps' target can be used to only build the</echo>
         <echo>              current project and ignore the libraries using:</echo>
-        <echo>              'ant only release'</echo>
+        <echo>              'ant nodeps release'</echo>
         <echo>   instrument:Builds an instrumented package and signs it with a</echo>
         <echo>              debug key.</echo>
         <echo>   test:      Runs the tests. Project must be a test project and</echo>