mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-03 07:35:59 -04:00
17 lines
351 B
Bash
Executable File
17 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
hg clone http://hg.openjdk.java.net/mobile/jdk9 openjdk
|
|
cd openjdk
|
|
bash ./get_source.sh
|
|
|
|
cd hotspot
|
|
hg import ../../termux-openjdk-aarch64-patches/hotspot/*.patch --no-commit
|
|
|
|
cd ..
|
|
cd jdk
|
|
hg import ../../termux-openjdk-aarch64-patches/jdk/*.patch --no-commit
|
|
|
|
cd ..
|
|
hg import ../termux-openjdk-aarch64-patches/*.patch --no-commit
|