diff options
author | wisberg <wisberg> | 2004-04-02 19:07:35 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2004-04-02 19:07:35 +0000 |
commit | fbfd1a5891a7fe51ed9f2e899de41b3535852bfa (patch) | |
tree | 9a5751c1c6e03415719fffb24cbc06d074362cd6 /docs/dist | |
parent | 6fc766058bd163744fb0933f2fe5db89664180d4 (diff) | |
download | aspectj-fbfd1a5891a7fe51ed9f2e899de41b3535852bfa.tar.gz aspectj-fbfd1a5891a7fe51ed9f2e899de41b3535852bfa.zip |
best to specify forkclasspath when forking to avoid snooping Ant's classpath, which fails in some contexts
Diffstat (limited to 'docs/dist')
-rw-r--r-- | docs/dist/doc/examples/build.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/dist/doc/examples/build.xml b/docs/dist/doc/examples/build.xml index dfe6291b2..03fce8e40 100644 --- a/docs/dist/doc/examples/build.xml +++ b/docs/dist/doc/examples/build.xml @@ -128,7 +128,9 @@ <echo message="##### Ajx list=${list} class=${class}" /> <antcall target="clean" /> <!-- can use ajc or iajc here --> - <iajc destdir="${classes.dir}" argfiles="${list}" fork="true" + <iajc destdir="${classes.dir}" argfiles="${list}" + fork="true" + forkclasspath="${aspectjtools.jar}" classpath="${aspectjrt.jar}"/> <antcall target="Ajx-run" > |