mirror of
https://github.com/RGBCube/serenity
synced 2026-01-15 02:21:01 +00:00
The build system uses relative paths to the toolchain binaries, so modifying $PATH is no longer necessary, and nothing needs $SERENITY_ROOT anymore.
14 lines
294 B
Bash
Executable file
14 lines
294 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# Get user and group details for setting qemu disk image ownership
|
|
export build_user=$(id -u)
|
|
export build_group=$(id -g)
|
|
|
|
sudo id
|
|
|
|
make -C ../ clean && \
|
|
make -C ../ && \
|
|
make -C ../ test && \
|
|
make -C ../ install &&
|
|
sudo -E PATH="$PATH" ./build-image-qemu.sh
|