Add sha256 and make sure to use gmake with freebsd
This commit is contained in:
parent
c5d50d34de
commit
7cc5e1eac9
|
@ -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!"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue