From 7cc5e1eac92e14a27e9ac10a0e6c1e1c494b9b7d Mon Sep 17 00:00:00 2001 From: Xavier L'Heureux Date: Sun, 3 May 2020 14:33:22 -0400 Subject: [PATCH] Add sha256 and make sure to use gmake with freebsd --- bootstrap.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index bdabf564e..fa59f6cf4 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -171,6 +171,7 @@ freebsd() install_freebsd_pkg "wget" install_freebsd_pkg "texinfo" install_freebsd_pkg "python" + install_freebsd_pkg "sha256sum" set +xe } @@ -544,8 +545,12 @@ boot() statusCheck echo "Run the following commands to build redox:" echo "cd redox" - echo "make all" - echo "make virtualbox or qemu" + MAKE="make" + if [[ "$(uname)" -eq FreeBSD ]]; then + MAKE="gmake" + fi + echo "$MAKE all" + echo "$MAKE virtualbox or qemu" echo echo " Good luck!"