aboutsummaryrefslogtreecommitdiffstats
path: root/make/deploy-jars-webstarttest_pack200.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-10-16 02:39:30 -0700
committerSven Gothel <[email protected]>2009-10-16 02:39:30 -0700
commit242da40f2ba446b3f92966461aa55c1bced8debc (patch)
tree3bbd10741f5790aa2b6014b34e46beeee5a1a539 /make/deploy-jars-webstarttest_pack200.sh
parent1d2e9cdca89e83339814abff38790367b33e6523 (diff)
Fix WindowsOffscreenWGLDrawable
Diffstat (limited to 'make/deploy-jars-webstarttest_pack200.sh')
-rwxr-xr-xmake/deploy-jars-webstarttest_pack200.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/make/deploy-jars-webstarttest_pack200.sh b/make/deploy-jars-webstarttest_pack200.sh
deleted file mode 100755
index fd9e215a9..000000000
--- a/make/deploy-jars-webstarttest_pack200.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#! /bin/sh
-
-wsdir=$1
-shift
-
-if [ -z "$wsdir" ] ; then
- echo usage $0 webstartdir
- exit 1
-fi
-
-if [ ! -e $wsdir ] ; then
- echo $wsdir does not exist
- exit 1
-fi
-
-THISDIR=`pwd`
-
-cd $wsdir
-
-mkdir -p DLLS
-mv *linux*.jar DLLS/
-mv *windows*.jar DLLS/
-mv *macosx*.jar DLLS/
-
-mkdir -p JAVAS
-mv *.jar JAVAS
-
-cd JAVAS
-
-for i in *.jar ; do
- echo pack200 -E9 $i.pack.gz $i
- pack200 -E9 $i.pack.gz $i
-done
-
-cd $wsdir
-
-mv JAVAS/* .
-mv DLLS/* .
-
-rm -rf JAVAS DLLS
-
-cd $THISDIR
-