From 973f53b4aa5264e5a7378f7f2245aa270c773196 Mon Sep 17 00:00:00 2001
From: Jan Materne
Date: Fri, 18 Aug 2006 09:37:11 +0000
Subject: [PATCH] Add a note to the _svn-Hack of Subversion 1.3.
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@432534 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/CoreTasks/defaultexcludes.html | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)
diff --git a/docs/manual/CoreTasks/defaultexcludes.html b/docs/manual/CoreTasks/defaultexcludes.html
index 38868d4cf..3e46860bb 100644
--- a/docs/manual/CoreTasks/defaultexcludes.html
+++ b/docs/manual/CoreTasks/defaultexcludes.html
@@ -69,12 +69,26 @@ backup files and then restore normal behavior
<defaultexcludes default="true"/>
+Notes
+By default the pattern **/.svn ane **/.svn/** are set as default
+excludes. With version 1.3 Subversion supports the
+"_svn hack".
+That means, that die svn-libraries evaluate environment variables and use .svn
+or _svn directory regarding to that value. We had chosen not to evaluate environment variables to
+get a more reliable build. Instead you have to change the settings by yourself by changing
+the exclude patterns:
+
+ <defaultexcludes remove="**/.svn"/>
+ <defaultexcludes remove="**/.svn/**"/>
+ <defaultexcludes add="**/_svn"/>
+ <defaultexcludes add="**/_svn/**"/>
+
+
-Copyright © 2003-2005 The Apache Software Foundation. All rights
+
Copyright © 2003-2006 The Apache Software Foundation. All rights
Reserved.