~ubuntu-branches/debian/sid/xom/sid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Torsten Werner <twerner@debian.org>
Date: Thu, 25 Feb 2010 20:01:30 +0100
Subject: [PATCH] disable filtering for ant's copy task

---
 build.xml |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/build.xml b/build.xml
index 8126f5e..2f7ab73 100644
--- a/build.xml
+++ b/build.xml
@@ -174,7 +174,7 @@ XOM Build file
 
     <delete file="${build.src}/nu/xom/Text.java" failonerror="false"/>
 
-    <copy todir="${build.src}">
+    <copy todir="${build.src}" filtering="false">
       <fileset dir="${src.dir}"/>
     </copy>
     
--