mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 13:30:31 +00:00
Toolchain: Allow setting QEMU_{VERSION, MD5SUM} from command line
This can be used to download and build a specific QEMU version.
This commit is contained in:
parent
ca92e37ae0
commit
408e2f607a
Notes:
sideshowbarker
2024-07-17 08:10:33 +09:00
Author: https://github.com/FireFox317 Commit: https://github.com/SerenityOS/serenity/commit/408e2f607a Pull-request: https://github.com/SerenityOS/serenity/pull/14898
1 changed files with 2 additions and 2 deletions
|
@ -11,8 +11,8 @@ PREFIX="$DIR/Local/qemu"
|
|||
BUILD=$(realpath "$DIR/../Build")
|
||||
SYSROOT="$BUILD/Root"
|
||||
|
||||
QEMU_VERSION="qemu-7.0.0"
|
||||
QEMU_MD5SUM="bfb5b09a0d1f887c8c42a6d5f26971ab"
|
||||
QEMU_VERSION=${QEMU_VERSION:="qemu-7.0.0"}
|
||||
QEMU_MD5SUM=${QEMU_MD5SUM:="bfb5b09a0d1f887c8c42a6d5f26971ab"}
|
||||
|
||||
echo PREFIX is "$PREFIX"
|
||||
echo SYSROOT is "$SYSROOT"
|
||||
|
|
Loading…
Reference in a new issue