Index: Exec.java
===================================================================
RCS file: /home/cvspublic/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Exec.java,v
retrieving revision 1.19
diff -u -r1.19 Exec.java
--- Exec.java	2001/09/13 08:33:45	1.19
+++ Exec.java	2001/10/11 17:23:10
@@ -111,6 +111,12 @@
                     command = antRun + " " + dir + " " + command;
                 }
             }
+        } else if (myos.toLowerCase().indexOf("netware") >= 0) {
+            String ant = project.getProperty("ant.home");
+            if (ant == null) throw new BuildException("Property 'ant.home' not found", location);
+            String antRun = project.resolveFile(ant + "/bin/antRun.ncf").toString();
+
+            command = antRun + " " + dir + " " + command;
         } else {
             String ant = project.getProperty("ant.home");
             if (ant == null) throw new BuildException("Property 'ant.home' not found", location);
