aboutsummaryrefslogtreecommitdiffstats
path: root/files/ant
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2011-10-14 19:04:34 -0700
committerXavier Ducrohet <xav@android.com>2011-10-14 19:04:34 -0700
commitb29886ed1a08c2d900ffb5fe4789db3701584d6d (patch)
tree21e79bd0115ead202b5303da1346dcc45e1b0c26 /files/ant
parenta5613f269c976916f7125f58fa1dcb4f365e54b4 (diff)
downloadsdk-b29886ed1a08c2d900ffb5fe4789db3701584d6d.zip
sdk-b29886ed1a08c2d900ffb5fe4789db3701584d6d.tar.gz
sdk-b29886ed1a08c2d900ffb5fe4789db3701584d6d.tar.bz2
Rename the modifier target only to nodeps.
Change-Id: I26dc7be4f06758c0be7f4dbcbc358b805ba44945
Diffstat (limited to 'files/ant')
-rw-r--r--files/ant/build.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/files/ant/build.xml b/files/ant/build.xml
index 16ae6a1..f5c1e30 100644
--- a/files/ant/build.xml
+++ b/files/ant/build.xml
@@ -366,7 +366,7 @@
<!-- ******************************************************* -->
<!-- target to disable building dependencies -->
- <target name="only">
+ <target name="nodeps">
<property name="dont.build.deps" value="true" />
</target>
@@ -481,7 +481,7 @@
<subant failonerror="true"
buildpathref="project.libraries"
antfile="build.xml">
- <target name="only" />
+ <target name="nodeps" />
<target name="${build.target}" />
</subant>
<echo></echo>
@@ -1272,14 +1272,14 @@
<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>