From 3bbdf874f87049c8ab25bfa5a274b0713732151e Mon Sep 17 00:00:00 2001 From: TudbuT Date: Fri, 13 May 2022 19:18:49 +0200 Subject: [PATCH] move ISBPL.java to root --- bootstrap/ISBPL.java => ISBPL.java | 0 setup.sh | 9 ++++++--- 2 files changed, 6 insertions(+), 3 deletions(-) rename bootstrap/ISBPL.java => ISBPL.java (100%) diff --git a/bootstrap/ISBPL.java b/ISBPL.java similarity index 100% rename from bootstrap/ISBPL.java rename to ISBPL.java diff --git a/setup.sh b/setup.sh index 08e1246..221bb06 100644 --- a/setup.sh +++ b/setup.sh @@ -2,11 +2,14 @@ if [ "$ISBPL_PATH" = "" ] ; then echo 'ISBPL_PATH=/usr/lib/isbpl' >> /etc/environment fi -mkdir /usr/lib/isbpl -cp ./*.isbpl /usr/lib/isbpl +mkdir /usr/lib/isbpl >& /dev/null +cp ./*.isbpl /usr/lib/isbpl >& /dev/null cd bootstrap +cp ../ISBPL.java . +echo ">>> There will be warnings about the Unsafe. Sadly, the code producing them is required for JIO. <<<" javac ISBPL.java -zip -r ISBPL.jar *.class META-INF +rm ISBPL.java ISBPL.jar +zip -r ISBPL.jar * META-INF rm *.class cd .. echo "#!/usr/bin/java -jar" > ISBPL.jar