summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWade Walker <[email protected]>2011-02-16 14:56:53 -0600
committerWade Walker <[email protected]>2011-02-18 08:52:34 -0600
commit9ddcdd544e08326facbc19419452bd2745352aef (patch)
treee0ebe4cdcc26188e619bd985a3ea7644b8f38af8
parent4bb89a99cabf28cd45343b102e22c756cfd87e9b (diff)
Fix path to FixedFuncHook.class.
The path to FixedFuncHook.class didn't get changed in the recent package move, which made the dependency checking wrong in the java.generate.composable.pipeline.custom.check.glfixfunc target.
-rw-r--r--make/build-jogl.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build-jogl.xml b/make/build-jogl.xml
index a0a9c70f8..7376c469d 100644
--- a/make/build-jogl.xml
+++ b/make/build-jogl.xml
@@ -920,7 +920,7 @@
<!-- Blow away the DebugGL*.java and TraceGL*.java sources if GL*.class has changed
(the uptodate element doesn't support arbitrary source and destination files) -->
<dependset>
- <srcfilelist dir="${classes}/com/jogamp/opengl/util/glsl/fixedfunc" files="FixedFuncHook.class" />
+ <srcfilelist dir="${classes}/jogamp/opengl/util/glsl/fixedfunc" files="FixedFuncHook.class" />
<srcfilelist dir="${classes}/javax/media/opengl" files="GL2ES1.class" />
<srcfilelist dir="${classes}/javax/media/opengl" files="GL2ES2.class" />
<targetfileset dir="${src.generated.java}/jogamp/opengl/util/glsl/fixedfunc"