Browse Source

It seems as if jvc didn't like quotes around source file namesin @argfile. PR 31667

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1209446 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 13 years ago
parent
commit
393f2a2c80
2 changed files with 6 additions and 1 deletions
  1. +4
    -0
      WHATSNEW
  2. +2
    -1
      src/main/org/apache/tools/ant/taskdefs/compilers/Jvc.java

+ 4
- 0
WHATSNEW View File

@@ -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:
--------------



+ 2
- 1
src/main/org/apache/tools/ant/taskdefs/compilers/Jvc.java View File

@@ -110,6 +110,7 @@ public class Jvc extends DefaultCompilerAdapter {
logAndAddFilesToCompile(cmd);

return
executeExternalCompile(cmd.getCommandline(), firstFileName) == 0;
executeExternalCompile(cmd.getCommandline(), firstFileName,
false) == 0;
}
}

Loading…
Cancel
Save