diff options
author | Sven Gothel <[email protected]> | 2012-06-26 23:47:29 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-06-26 23:47:29 +0200 |
commit | 70d9ac4ac866a21a2dbcc3f779ef2b3f81a7e29d (patch) | |
tree | 8cb3ddc6a37f37ac58663e7472179fe9af19c89b | |
parent | e51542375c4f736c396fd5a38288dd5129a09268 (diff) |
Fix commit a393e45613d87101dbb13763df263c2f9291d2d0: jogl's cg native lib is jogl_cg (jar packaging)
-rw-r--r-- | make/build-jogl.xml | 4 |
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> |