bodewig 2005/02/04 07:41:39 Modified: src/main/org/apache/tools/ant/taskdefs/compilers Jikes.java Log: logging of command line was incomplete Revision Changes Path 1.31 +3 -2 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.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- Jikes.java 21 Dec 2004 15:44:51 -0000 1.30 +++ Jikes.java 4 Feb 2005 15:41:39 -0000 1.31 @@ -1,5 +1,5 @@ /* - * Copyright 2001-2004 The Apache Software Foundation + * Copyright 2001-2005 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -195,7 +195,6 @@ addCurrentCompilerArgs(cmd); int firstFileName = cmd.size(); - logAndAddFilesToCompile(cmd); Path boot = getBootClassPath(); if (boot.size() > 0) { @@ -203,6 +202,8 @@ cmd.createArgument().setPath(boot); } + logAndAddFilesToCompile(cmd); + return executeExternalCompile(cmd.getCommandline(), firstFileName) == 0; }
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]