setup.sh: add dontConfigure

There's already 21 occurences of this and I've
expected this to exist without knowing it had no affect for a while.
This commit is contained in:
worldofpeace 2019-06-19 09:00:14 -04:00
parent 0daecd2d7a
commit 0197c05786

View file

@ -1283,6 +1283,7 @@ genericBuild() {
fi
for curPhase in $phases; do
if [[ "$curPhase" = configurePhase && -n "${dontConfigure:-}" ]]; then continue; fi
if [[ "$curPhase" = buildPhase && -n "${dontBuild:-}" ]]; then continue; fi
if [[ "$curPhase" = checkPhase && -z "${doCheck:-}" ]]; then continue; fi
if [[ "$curPhase" = installPhase && -n "${dontInstall:-}" ]]; then continue; fi