Return-Path: Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 7828 invoked by uid 500); 10 Jun 2003 03:00:47 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 7817 invoked by uid 500); 10 Jun 2003 03:00:47 -0000 Received: (qmail 7813 invoked from network); 10 Jun 2003 03:00:47 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 10 Jun 2003 03:00:47 -0000 Received: (qmail 35341 invoked by uid 1142); 10 Jun 2003 03:00:46 -0000 Date: 10 Jun 2003 03:00:46 -0000 Message-ID: <20030610030046.35340.qmail@icarus.apache.org> From: conor@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs/compilers Jikes.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N conor 2003/06/09 20:00:46 Modified: src/main/org/apache/tools/ant/taskdefs/compilers Jikes.java Log: Add support for -target to Jikes compiler adapter PR: 20580 Revision Changes Path 1.20 +6 -0 ant/src/main/org/apache/tools/ant/taskdefs/compilers/Jikes.java Index: Jikes.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/compilers/Jikes.java,v retrieving revision 1.19 retrieving revision 1.20 diff -u -w -u -r1.19 -r1.20 --- Jikes.java 15 May 2003 12:44:01 -0000 1.19 +++ Jikes.java 10 Jun 2003 03:00:45 -0000 1.20 @@ -155,6 +155,12 @@ if (depend) { cmd.createArgument().setValue("-depend"); } + + if (target != null) { + cmd.createArgument().setValue("-target"); + cmd.createArgument().setValue(target); + } + /** * XXX * Perhaps we shouldn't use properties for these --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org