summaryrefslogtreecommitdiffstats
path: root/build/release
diff options
context:
space:
mode:
authoracolyer <acolyer>2003-10-10 11:53:46 +0000
committeracolyer <acolyer>2003-10-10 11:53:46 +0000
commit235decb1defc1a9049a821a69587f3c37f5935dd (patch)
tree4f7e0989986aaaf4a7e9789ba82f2a4b9bc7a509 /build/release
parentda871bf6f021e8e8a5acd6683e4d43ca319f9044 (diff)
downloadaspectj-235decb1defc1a9049a821a69587f3c37f5935dd.tar.gz
aspectj-235decb1defc1a9049a821a69587f3c37f5935dd.zip
Previous check-in got somehow corrupted once again.
Diffstat (limited to 'build/release')
-rw-r--r--build/release/build.xml27
1 files changed, 13 insertions, 14 deletions
diff --git a/build/release/build.xml b/build/release/build.xml
index 84f0ee976..f6468d029 100644
--- a/build/release/build.xml
+++ b/build/release/build.xml
@@ -62,11 +62,10 @@
aspectj.modules.dir ... for existing cvs tree
aj.build.install.dir ... for installed dist
- -- when running behind a proxy server (currently
- only necessary for test-doc-links target)
+ -- when building behind a proxy server
+ (currently only used for test-doc-links target)
proxy.host name of proxy server
- proxy.port proxy port number
-
+ proxy.port proxy server's port number
Example command lines for using this script:
@@ -428,15 +427,15 @@
<fileset dir="${tjm.copy.todir}" includes="**/*"/>
</delete>
<property name="xmlSrcDir"
- location="${aspectj.tests.dir}/bin/junitXmlOutput"/> type="file"/>
-
+ location="${aspectj.tests.dir}/bin/junitXmlOutput"/>
+ <move todir="${tjm.copy.todir}" >
+ <fileset dir="${xmlSrcDir}" includes="**/*"/>
+ </move>
</target>
-
- <target name="init-sources-available" depends="init-variables"
- unless="sources.available">
- <available property="sources.available"
- file="${aspectj.modules.dir}/build/build.xml"/>
- <fail ueck against distribution">
+
+ <target name="test-doc-links"
+ depends="init-aspectj-available,init-harness-available"
+ description="run link check against distribution">
<antcall target="do-java13-setup"/>
<property file="${java.home.file}"/>
<fail unless="build.java.home"
@@ -465,8 +464,8 @@
<arg value="-printInfo"/>
<arg value="-log"/>
<arg value="${doclink.output.file}-messages.txt"/>
- <sysproperty key="http.proxyHost" value="${proxy.host}" />
- <sysproperty key="http.proxyPort" value="${proxy.port}" />
+ <sysproperty key="http.proxyHost" value="${proxy.host}" />
+ <sysproperty key="http.proxyPort" value="${proxy.port}" />
</java>
</target>