diff --git a/CONTRIBUTORS b/CONTRIBUTORS index e1723fd9d..dd5f77880 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -5,6 +5,7 @@ Andreas Ames Andrew Everitt Anil K. Vijendran Anli Shundi +Anthony Green Antoine Levy-Lambert Anton Mazkovoi Arnaud Vandyck diff --git a/src/main/org/apache/tools/ant/types/Path.java b/src/main/org/apache/tools/ant/types/Path.java index 382da09b9..7da4c9813 100644 --- a/src/main/org/apache/tools/ant/types/Path.java +++ b/src/main/org/apache/tools/ant/types/Path.java @@ -68,7 +68,7 @@ public class Path extends DataType implements Cloneable { /** * The system bootclassspath as a Path object. * - * @since Ant 1.7 + * @since Ant 1.6.2 */ public static Path systemBootClasspath = new Path(null, System.getProperty("sun.boot.class.path")); @@ -585,6 +585,8 @@ public class Path extends DataType implements Cloneable { kaffeJarFiles.setIncludes("*.jar"); addFileset(kaffeJarFiles); } + } else if ("GNU libgcj".equals(System.getProperty("java.vm.name"))) { + addExisting(systemBootClasspath); } if (System.getProperty("java.vendor").toLowerCase(Locale.US).indexOf("microsoft") >= 0) {