diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-12-20 22:00:41 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-20 22:00:41 +0100 |
commit | 6c2c3d00a39a6e2798497426168eabd2c1e7a702 (patch) | |
tree | ff47ac01c010d3388c22e80f848a8ae26cf91e60 /Kernel | |
parent | 097b8acf10f76ebda275c0d0bcac96cd20584adf (diff) | |
download | serenity-6c2c3d00a39a6e2798497426168eabd2c1e7a702.zip |
Build: Have makeall.sh clean up before running
This matches the old behavior where makeall.sh would always try to
produce a clean build.
Diffstat (limited to 'Kernel')
-rwxr-xr-x | Kernel/makeall.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index c81cc8cacc..dc415f334f 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -12,7 +12,8 @@ export build_group=$(id -g) sudo id -make -C ../ && \ +make -C ../ clean && \ + make -C ../ && \ make -C ../ test && \ make -C ../ install && sudo -E PATH="$PATH" ./build-image-qemu.sh |