This is an automated email from the ASF dual-hosted git repository.

jaikiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git


The following commit(s) were added to refs/heads/master by this push:
     new 127b08d  Add ability to optionally skip the build target (which does 
the compilation)
127b08d is described below

commit 127b08d5e5dbaacccb9d42e5b7f0e7127c7ea472
Author: Jaikiran Pai <jaiki...@apache.org>
AuthorDate: Sun Aug 25 17:57:17 2019 +0530

    Add ability to optionally skip the build target (which does the compilation)
---
 build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index 2162963..62f0942 100644
--- a/build.xml
+++ b/build.xml
@@ -595,7 +595,7 @@
          Build the code
        ===================================================================
   -->
-  <target name="build" depends="prepare, compile, compile-jdk9+"
+  <target name="build" depends="prepare, compile, compile-jdk9+" 
unless="skip.build"
           description="--> compiles the source code">
 
     <!-- Builds and verifies that the classes belonging in the confined 
package of

Reply via email to