aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-06-26 23:47:29 +0200
committerSven Gothel <[email protected]>2012-06-26 23:47:29 +0200
commit70d9ac4ac866a21a2dbcc3f779ef2b3f81a7e29d (patch)
tree8cb3ddc6a37f37ac58663e7472179fe9af19c89b
parente51542375c4f736c396fd5a38288dd5129a09268 (diff)
Fix commit a393e45613d87101dbb13763df263c2f9291d2d0: jogl's cg native lib is jogl_cg (jar packaging)
-rw-r--r--make/build-jogl.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/build-jogl.xml b/make/build-jogl.xml
index 6845354f6..2605104d9 100644
--- a/make/build-jogl.xml
+++ b/make/build-jogl.xml
@@ -1681,12 +1681,12 @@
<jar manifest="${build.jogl}/manifest.mf" destfile="${build.jogl}/jogl-natives-${os.and.arch}.jar" filesonly="true">
<fileset dir="${obj.jogl}">
<include name="*.${native.library.suffix}" />
- <exclude name="*jogl-cg.${native.library.suffix}" />
+ <exclude name="*jogl_cg.${native.library.suffix}" />
</fileset>
</jar>
<jar manifest="${build.jogl}/manifest.mf" destfile="${build.jogl}/jogl-cg-natives-${os.and.arch}.jar" filesonly="true">
<fileset dir="${obj.jogl}">
- <include name="*jogl-cg.${native.library.suffix}" />
+ <include name="*jogl_cg.${native.library.suffix}" />
</fileset>
</jar>
</target>