setup.sh: add dontUnpack

This commit is contained in:
worldofpeace 2019-06-19 11:37:51 -04:00
parent cab7c6cbd9
commit 4a88f4ebfc

View File

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