diff --git a/makejdkwithoutconfigure.sh b/makejdkwithoutconfigure.sh new file mode 100755 index 0000000..d69db7b --- /dev/null +++ b/makejdkwithoutconfigure.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# duplicate of buildjdk.sh that avoids reconfiguring. Used for making changes to openjdk code. + +set -e +. setdevkitpath.sh +export FREETYPE_DIR=`pwd`/freetype-2.6.2/build_android-arm +export CUPS_DIR=`pwd`/cups-2.2.4 + +# My system's JDK is too old (7.0), so we add an Oracle boot JDK. +export PATH=`pwd`/jdk-9.0.4/bin:$PATH + +cd openjdk +cd build/android-arm-normal-server-release +make JOBS=4 images