From 15aac1f9e973848067a35b74a7091ad803151e95 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 23 Jan 2020 10:06:57 +0100 Subject: [PATCH] Build: Fix silly mistake in makeall.sh --- Kernel/makeall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index 0bf6b4fa03..1f907145cb 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -24,7 +24,7 @@ if [ "$(uname -s)" = "OpenBSD" ]; then MAKE=gmake fi -if [ $fast_mode = 1 ]; then +if [ "$fast_mode" = "1" ]; then $MAKE -C ../ && \ $MAKE -C ../ install && sudo -E PATH="$PATH" ./build-image-qemu.sh