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

« back to all changes in this revision

Viewing changes to debian/patches/0006-disable-filtering-for-ant-s-copy-task.patch

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2010-02-25 20:16:46 UTC
  • Revision ID: james.westby@ubuntu.com-20100225201646-w3ylayyeqx9ratu1
Tags: 1.2.1-2
* Convert patches to dep3 format.
* Add a patch for ant 1.8. (Closes: #571391)
* Fine tune build dependencies to default-jdk.
* Convert to source format 3.0.
* Update Standards-Version: 3.8.4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
From: Torsten Werner <twerner@debian.org>
 
2
Date: Thu, 25 Feb 2010 20:01:30 +0100
 
3
Subject: [PATCH] disable filtering for ant's copy task
 
4
 
 
5
---
 
6
 build.xml |    2 +-
 
7
 1 files changed, 1 insertions(+), 1 deletions(-)
 
8
 
 
9
diff --git a/build.xml b/build.xml
 
10
index 8126f5e..2f7ab73 100644
 
11
--- a/build.xml
 
12
+++ b/build.xml
 
13
@@ -174,7 +174,7 @@ XOM Build file
 
14
 
 
15
     <delete file="${build.src}/nu/xom/Text.java" failonerror="false"/>
 
16
 
 
17
-    <copy todir="${build.src}">
 
18
+    <copy todir="${build.src}" filtering="false">
 
19
       <fileset dir="${src.dir}"/>
 
20
     </copy>
 
21
     
 
22
--