mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-03 07:35:59 -04:00
15 lines
427 B
Bash
Executable File
15 lines
427 B
Bash
Executable File
#!/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-${TARGET_SHORT}
|
|
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-${TARGET_JDK}-normal-server-release
|
|
make JOBS=4 images
|