Add sha256 and make sure to use gmake with freebsd

This commit is contained in:
Xavier L'Heureux 2020-05-03 14:33:22 -04:00
parent c5d50d34de
commit 7cc5e1eac9
No known key found for this signature in database
GPG key ID: A06A06A3924D1F17

View file

@ -171,6 +171,7 @@ freebsd()
install_freebsd_pkg "wget" install_freebsd_pkg "wget"
install_freebsd_pkg "texinfo" install_freebsd_pkg "texinfo"
install_freebsd_pkg "python" install_freebsd_pkg "python"
install_freebsd_pkg "sha256sum"
set +xe set +xe
} }
@ -544,8 +545,12 @@ boot()
statusCheck statusCheck
echo "Run the following commands to build redox:" echo "Run the following commands to build redox:"
echo "cd redox" echo "cd redox"
echo "make all" MAKE="make"
echo "make virtualbox or qemu" if [[ "$(uname)" -eq FreeBSD ]]; then
MAKE="gmake"
fi
echo "$MAKE all"
echo "$MAKE virtualbox or qemu"
echo echo
echo " Good luck!" echo " Good luck!"