This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git

commit 2beb3977a8b81dae5b432a21b45b94da2bfb238e
Author: Stefan Bodewig <bode...@apache.org>
AuthorDate: Fri Sep 25 20:14:51 2020 +0200

    fix HTML table
---
 manual/running.html | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/manual/running.html b/manual/running.html
index 9c31d12..63647f8 100644
--- a/manual/running.html
+++ b/manual/running.html
@@ -462,13 +462,15 @@ And I filtered out the <code>getPropertyHelper</code> 
access.</p>
 </tr>
 <tr>
   <td><code>java.io.tmpdir</code></td>
+  <td>path</td>
   <td>Some tasks need to create temporary files and will write them to
   the directory specified by this property. This property is set by
   the Java VM but can be overridden when Ant is started.<br/>
   See also <a href="#tmpdir">Temporary Directories</a>.</td>
-</table>
+</tr>
 <tr>
   <td><code>ant.tmpdir</code></td>
+  <td>path</td>
   <td><em>Since Ant 1.10.8</em><br/>
   Some tasks need to create temporary files and will write them to
   the directory specified by this property. This property takes
@@ -476,6 +478,7 @@ And I filtered out the <code>getPropertyHelper</code> 
access.</p>
   set. Unlike <code>java.io.tmpdir</code> this property can be set
   from within the build file.<br/>
   See also <a href="#tmpdir">Temporary Directories</a>.</td>
+</tr>
 </table>
 
 <p>
@@ -518,8 +521,14 @@ on the platform and the JVM implementation.</p>
   of an external command on OpenVMS will create a temporary file
   holding a DCL script that invokes the actual command.</p>
 
+<p>Starting with Ant 1.10.9 Ant will try to create a build process
+  specific temporary directory inside <code>java.io.tmpdir</code> wiht
+  permissions set to be accessible by the current user only and use
+  that if <code>ant.tmpdir</code> has not been set and Ant is able to
+  set permissions on the filesystem in question.</p>
+
 <p>Tasks not provided with the Ant distribution will ignore
-  the <code>ant.tmpdir</code> property and
+  the <code>ant.tmpdir</code> property or the process subdirectory and
   use <code>java.io.tmpdir</code> unless they have been adapted to the
   changed API of Ant 1.10.8.</p>
 

Reply via email to