diff options
author | Martin Ritchie <ritchiem@apache.org> | 2008-10-09 15:36:54 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2008-10-09 15:36:54 +0000 |
commit | 0cdde2ed6bc65f412126a066b60334a8a5a701eb (patch) | |
tree | 1654a202e26abb7af7f3bf8e017eb67b47a88ccc | |
parent | bca3d6d1762609a7a6e30ea2d101f0a183d75d63 (diff) | |
download | qpid-python-0cdde2ed6bc65f412126a066b60334a8a5a701eb.tar.gz |
QPID-1330 : Ensure release-bin copies all files in java/broker/bin
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@703187 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/broker/build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/broker/build.xml b/java/broker/build.xml index 3d832480ee..cb06a3900e 100644 --- a/java/broker/build.xml +++ b/java/broker/build.xml @@ -43,10 +43,10 @@ <target name="copy-bin-release" description="copy dependencies into module release"> <copy todir="${module.release}/bin" failonerror="true"> - <fileset dir="${module.bin}" includes="qpid*"/> + <fileset dir="${module.bin}"/> </copy> <copy todir="${module.release}/bin" failonerror="true" flatten="true"> - <fileset dir="${basedir}/../common/bin" includes="qpid-run"/> + <fileset dir="${basedir}/../common/bin"/> </copy> <chmod dir="${module.release}/bin" perm="ugo+rx" includes="**/*"/> |