diff options
author | Rafael H. Schloming <rhs@apache.org> | 2009-07-13 17:23:31 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2009-07-13 17:23:31 +0000 |
commit | b37cea70933f472580000f191ff607a8176ae815 (patch) | |
tree | a44781ce4de607d672554b1b1267967e668a2e5d | |
parent | 15daf8342812786490f8a8dabcc5ba3cee8593e6 (diff) | |
download | qpid-python-b37cea70933f472580000f191ff607a8176ae815.tar.gz |
more ant 1.6.5 workarounds
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@793631 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/module.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/module.xml b/java/module.xml index a1187665d2..51b9c176c1 100644 --- a/java/module.xml +++ b/java/module.xml @@ -72,20 +72,20 @@ <available property="module.bin.exists" file="${module.bin}"/> <indirect name="module.libs" variable="${module.name}.libs"/> - <condition property="module.libs.empty"> + <condition property="module.libs.includes" value="__EMPTY__" else="${module.libs}"> <equals trim="true" arg1="${module.libs}" arg2=""/> </condition> <indirect name="module.test.libs" variable="${module.name}.test.libs"/> - <condition property="module.test.libs.empty"> + <condition property="module.test.libs.includes" value="__EMPTY__" else="${module.test.libs}"> <equals trim="true" arg1="${module.test.libs}" arg2=""/> </condition> <path id="module.libs"> - <filelist dir="${project.root}" files="${module.libs}"/> + <fileset dir="${project.root}" includes="${module.libs.includes}"/> </path> <path id="module.test.libs"> - <filelist dir="${project.root}" files="${module.test.libs}"/> + <fileset dir="${project.root}" includes="${module.test.libs.includes}"/> </path> <path id="module.src.path"> |