Modify install.sh to fix a few FreeBSD build / install issues (#288)

* Export MAKE=gmake for FreeBSD build of miniupnpc
* Disable failing vdf client build on FreeBSD
This commit is contained in:
Nathan Houghton 2020-06-12 00:27:32 -07:00 committed by Gene Hoffman
parent 124f6f2227
commit c7affdc4c8
1 changed files with 3 additions and 0 deletions

View File

@ -52,6 +52,9 @@ elif [ "$(uname)" = "Darwin" ] && ! type brew >/dev/null 2>&1; then
elif [ "$(uname)" = "OpenBSD" ]; then elif [ "$(uname)" = "OpenBSD" ]; then
export MAKE=${MAKE:-gmake} export MAKE=${MAKE:-gmake}
export BUILD_VDF_CLIENT=${BUILD_VDF_CLIENT:-N} export BUILD_VDF_CLIENT=${BUILD_VDF_CLIENT:-N}
elif [ "$(uname)" = "FreeBSD" ]; then
export MAKE=${MAKE:-gmake}
export BUILD_VDF_CLIENT=${BUILD_VDF_CLIENT:-N}
fi fi
# this fancy syntax sets INSTALL_PYTHON_PATH to "python3.7" unless INSTALL_PYTHON_VERSION is defined # this fancy syntax sets INSTALL_PYTHON_PATH to "python3.7" unless INSTALL_PYTHON_VERSION is defined