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:
parent
0daecd2d7a
commit
0197c05786
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue