summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2008-08-14 16:25:25 +0000
committerMartin Ritchie <ritchiem@apache.org>2008-08-14 16:25:25 +0000
commit38304fe60fc1d82b431a58e20a3df10fc809a00b (patch)
treeda38fdc184ea00a1e1b9125f775a37fc6bc0ce4c
parent56ad2ae0c168d454d0079444c6d20362aa7ddf51 (diff)
downloadqpid-python-38304fe60fc1d82b431a58e20a3df10fc809a00b.tar.gz
QPID-1077 : Noticed that the defaults of 644, and 755 for files and directories were not being applied so forcibly set these values.~
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@685952 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/java/build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/build.xml b/qpid/java/build.xml
index 0a3b4407b2..375fbbac94 100644
--- a/qpid/java/build.xml
+++ b/qpid/java/build.xml
@@ -137,11 +137,11 @@
<exclude name="bin/*.txt"/>
</zipfileset>
- <zipfileset dir="${build}" prefix="${project.namever}">
+ <zipfileset dir="${build}" prefix="${project.namever}" filemode="644">
<include name="bin/*.txt"/>
</zipfileset>
- <zipfileset dir="${build}" prefix="${project.namever}" excludes="${release.excludes}" >
+ <zipfileset dir="${build}" prefix="${project.namever}" excludes="${release.excludes}" filemode="644" dirmode="755">
<exclude name="bin/**"/>
<exclude name="**/*.class"/>
</zipfileset>