Author: bodewig
Date: Fri Dec 2 12:31:17 2011
New Revision: 1209446
URL: http://svn.apache.org/viewvc?rev=1209446&view=rev
Log:
It seems as if jvc didn't like quotes around source file namesin @argfile. PR
31667
Modified:
ant/core/trunk/WHATSNEW
ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/compilers/Jvc.java
Modified: ant/core/trunk/WHATSNEW
URL:
http://svn.apache.org/viewvc/ant/core/trunk/WHATSNEW?rev=1209446&r1=1209445&r2=1209446&view=diff
==============================================================================
--- ant/core/trunk/WHATSNEW (original)
+++ ant/core/trunk/WHATSNEW Fri Dec 2 12:31:17 2011
@@ -108,6 +108,10 @@ Fixed bugs:
property expansion twice.
Bugzilla Report 42046.
+ * jvc doesn't like it if source file names in argument files are
+ quoted.
+ Bugzilla Report 31667.
+
Other changes:
--------------
Modified:
ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/compilers/Jvc.java
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/compilers/Jvc.java?rev=1209446&r1=1209445&r2=1209446&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/compilers/Jvc.java
(original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/compilers/Jvc.java
Fri Dec 2 12:31:17 2011
@@ -110,6 +110,7 @@ public class Jvc extends DefaultCompiler
logAndAddFilesToCompile(cmd);
return
- executeExternalCompile(cmd.getCommandline(), firstFileName) == 0;
+ executeExternalCompile(cmd.getCommandline(), firstFileName,
+ false) == 0;
}
}