summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2006-11-20 11:23:33 +0000
committerMartin Ritchie <ritchiem@apache.org>2006-11-20 11:23:33 +0000
commit4485cc33303e1036d43e90932e2e3adbcc64c119 (patch)
treee90c6184e4784473cb07fabaf2d7ff29a0ec4da2
parente51cbe9ddff43d644687b2db29d7536edc57792d (diff)
downloadqpid-python-4485cc33303e1036d43e90932e2e3adbcc64c119.tar.gz
Fixed a bug where the license information would not be copied to the correct location in the new full src distribution
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M1@477147 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/build.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/java/build.xml b/java/build.xml
index f8a9a95fab..8aa4fda67f 100644
--- a/java/build.xml
+++ b/java/build.xml
@@ -218,9 +218,9 @@
<include name="README.txt"/>
<include name="NOTICE.txt"/>
</fileset>
- <fileset dir="${resources.root.dir}/META-INF">
+ <fileset dir="${resources.root.dir}/META-INF">
<include name="DISCLAIMER.txt"/>
- </fileset>
+ </fileset>
</copy>
<antcall target="createLicense">
@@ -301,12 +301,12 @@
<copy todir="${build.release.src.dir}">
<fileset dir="${project.root}/..">
- <!-- All source files -->
+ <!--All source files -->
<include name="java/**"/>
<include name="specs/**"/>
- <!-- exclude files -->
- <exclude name=".svn/**"/>
+ <!--exclude files -->
+ <exclude name="**/.svn/**"/>
<exclude name="java/${build.dir}/**"/>
<exclude name="java/${release.dir}/**"/>
</fileset>
@@ -314,7 +314,7 @@
<!-- Copy release docs to root of release -->
<antcall target="copyreleasedocs">
- <param name="todir" value="${build.release.dir}"/>
+ <param name="todir" value="${build.release.src.dir}"/>
</antcall>