summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authoracolyer <acolyer>2004-06-09 10:21:57 +0000
committeracolyer <acolyer>2004-06-09 10:21:57 +0000
commit4c15d23799c086731e33e4506bc5fe5417bc14c5 (patch)
tree074ae04a0135c68e427bc728b5b1234ed0824486 /build
parentd57c4726eba99e78e9fdd04ec5008aa655216ac4 (diff)
downloadaspectj-4c15d23799c086731e33e4506bc5fe5417bc14c5.tar.gz
aspectj-4c15d23799c086731e33e4506bc5fe5417bc14c5.zip
skip on the exclude runtime test rather than patch it in the build file.
This allows the correct testing-drivers-all.jar to be built too.
Diffstat (limited to 'build')
-rw-r--r--build/build.xml3
-rw-r--r--build/src/org/aspectj/internal/tools/build/Module.java3
2 files changed, 2 insertions, 4 deletions
diff --git a/build/build.xml b/build/build.xml
index b9c017a6d..44cef9762 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -372,9 +372,6 @@ To use testing client jar in tests,
<mkdir dir="${aj.dist.dir}/tools_tmp"/>
<unjar dest="${aj.dist.dir}/tools_tmp"
src="${aj.dist.dir}/tools/lib/aspectjtools.jar"/>
- <!-- put the runtime classes in too -->
- <unjar dest="${aj.dist.dir}/tools_tmp"
- src="${aj.dist.dir}/tools/lib/aspectjrt.jar"/>
<!-- Ant 1.5.1 doesn't overwrite the jar, even with update set to false -->
<delete file="${aj.dist.dir}/tools/lib/aspectjtools.jar" />
<jar manifest="${aj.dist.dir}/tools_tmp/META-INF/MANIFEST.MF"
diff --git a/build/src/org/aspectj/internal/tools/build/Module.java b/build/src/org/aspectj/internal/tools/build/Module.java
index 5cc292246..f61dd6345 100644
--- a/build/src/org/aspectj/internal/tools/build/Module.java
+++ b/build/src/org/aspectj/internal/tools/build/Module.java
@@ -134,7 +134,8 @@ public class Module {
if (null == requiredJar) {
return true;
} else {
- return "runtime.jar".equals(requiredJar.getName());
+ //return "runtime.jar".equals(requiredJar.getName());
+ return false;
}
}