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:
parent
124f6f2227
commit
c7affdc4c8
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue