diff options
author | Sylvestre Ledru <[email protected]> | 2011-02-22 17:13:21 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-25 06:05:17 +0100 |
commit | 079572c5d5999c410a827c7d178a19f88db18c9a (patch) | |
tree | fa7080783e0de6c85e95cba0e8b367ec08602636 /make/scripts/make.jogl.cdcfp.macosx.sh | |
parent | 1f4171ef3019ce8de945129d74363def12e128a3 (diff) |
Remove reference to the deprecated option noCDC
Diffstat (limited to 'make/scripts/make.jogl.cdcfp.macosx.sh')
-rwxr-xr-x | make/scripts/make.jogl.cdcfp.macosx.sh | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/make/scripts/make.jogl.cdcfp.macosx.sh b/make/scripts/make.jogl.cdcfp.macosx.sh deleted file mode 100755 index 6875a4d2c..000000000 --- a/make/scripts/make.jogl.cdcfp.macosx.sh +++ /dev/null @@ -1,25 +0,0 @@ -#! /bin/sh - -if [ -e /opt-share/etc/profile.ant ] ; then - . /opt-share/etc/profile.ant -fi - - -# -Dc.compiler.debug=true - -BUILD_SUBDIR=build-cdcfp-macosx - -ant \ - -Dsetup.cdcfp=true \ - -Drootrel.build=$BUILD_SUBDIR \ - $* 2>&1 | tee make.jogl.cdcfp.macosx.log - -rm -rf ../$BUILD_SUBDIR/lib -mkdir -p ../$BUILD_SUBDIR/lib -for i in `find ../$BUILD_SUBDIR/ -name \*jnilib` ; do - cp -v $i ../$BUILD_SUBDIR/lib/$(basename $i .jnilib).so -done -for i in `find ../../gluegen/$BUILD_SUBDIR/ -name \*jnilib` ; do - cp -v $i ../$BUILD_SUBDIR/lib/$(basename $i .jnilib).so -done - |