summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-11-13 15:19:12 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-11-13 15:19:12 +0000
commitb740fdaea40c1d00e73dfc66950b0cb299f0df82 (patch)
tree32852b96c30721c7b386462c6870e970a570ed62 /qadevOOo
parentd7cd1d725f844dd583ba7c3ffab9e5fd9dc4092c (diff)
#i10000# #158599# Do not use wildcards for includes. On windows this may lead to file locking, which in turn can break repeated parallel builds: some unrelated jar files from other modules cannot get delivered.
Diffstat (limited to 'qadevOOo')
-rwxr-xr-xqadevOOo/build.xml12
1 files changed, 10 insertions, 2 deletions
diff --git a/qadevOOo/build.xml b/qadevOOo/build.xml
index a47cc2773d7f..f00746a2a6b8 100755
--- a/qadevOOo/build.xml
+++ b/qadevOOo/build.xml
@@ -23,7 +23,11 @@
<classpath>
<pathelement location="${qadevOOo.class}"/>
<fileset dir="${qadevOOo.office_jars}">
- <include name="**/*.jar"/>
+ <include name="**/ridl.jar"/>
+ <include name="**/unoil.jar"/>
+ <include name="**/jurt.jar"/>
+ <include name="**/juh.jar"/>
+ <include name="**/java_uno.jar"/>
</fileset>
</classpath>
</javac>
@@ -35,7 +39,11 @@
<classpath>
<pathelement location="${qadevOOo.class}"/>
<fileset dir="${qadevOOo.office_jars}">
- <include name="**/*.jar"/>
+ <include name="**/ridl.jar"/>
+ <include name="**/unoil.jar"/>
+ <include name="**/jurt.jar"/>
+ <include name="**/juh.jar"/>
+ <include name="**/java_uno.jar"/>
</fileset>
</classpath>
</javac>