diff options
author | Wade Walker <[email protected]> | 2011-02-17 09:29:40 -0600 |
---|---|---|
committer | Wade Walker <[email protected]> | 2011-02-18 08:52:34 -0600 |
commit | 943313af19da04044dddda57cb6bc4bd399eb76e (patch) | |
tree | 0f074ca1ac42e63a18cba1a2e7aa15ea9180af92 /make/build-test.xml | |
parent | 9ddcdd544e08326facbc19419452bd2745352aef (diff) |
Prevent native libraries from always rebuilding and stripping
The cc task will always re-link, even if no source files are built.
This commit wraps an uptodate task around cc to prevent this, so
the libraries will only be rebuilt now if a source file changes.
This commit also moves library symbol stripping into the same
uptodate task, so it only happens if a library is built (previously
the libraries were always stripped).
Diffstat (limited to 'make/build-test.xml')
-rw-r--r-- | make/build-test.xml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/make/build-test.xml b/make/build-test.xml index 93f0d0e7e..2d1813668 100644 --- a/make/build-test.xml +++ b/make/build-test.xml @@ -83,9 +83,6 @@ <classpath refid="junit_jogl_newt.compile.classpath"/> <src path="${src.test}" /> </javac> - <delete includeEmptyDirs="true" quiet="true"> - <fileset file="${jogl.test.jar}" /> - </delete> <jar destfile="${jogl.test.jar}" filesonly="true"> <!-- get all class files, but skip any resource files that external tools might have copied into the class directory (otherwise, it's possible |