From 41ab6bee991ff69a8b11bec59c64b6b17aadaf3c Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 11 May 2020 09:57:56 -0600 Subject: [PATCH] Fix uname check for FreeBSD in bootstrap --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 9750968..402666b 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -549,7 +549,7 @@ boot() echo "Run the following commands to build redox:" echo "cd redox" MAKE="make" - if [[ "$(uname)" -eq FreeBSD ]]; then + if [[ "$(uname)" == "FreeBSD" ]]; then MAKE="gmake" echo "kldload fuse.ko # This loads the kernel module for fuse" fi