aboutsummaryrefslogtreecommitdiff
path: root/pkgs/stdenv/generic
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-04-12 07:03:27 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2020-04-12 07:04:35 -0400
commit5384d7288522cd44ba5e766a29576426a219b400 (patch)
treed51c1338e7622297dfaeb3f75e4808f43b35e353 /pkgs/stdenv/generic
parent11e0f5993b1caa28b9e1b8c3508c63e611214b43 (diff)
setup.sh: add dontPatch
Fixes #85038
Diffstat (limited to 'pkgs/stdenv/generic')
-rw-r--r--pkgs/stdenv/generic/setup.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh
index ad52c8e5a7c9..839757945a2b 100644
--- a/pkgs/stdenv/generic/setup.sh
+++ b/pkgs/stdenv/generic/setup.sh
@@ -1266,6 +1266,7 @@ genericBuild() {
for curPhase in $phases; do
if [[ "$curPhase" = unpackPhase && -n "${dontUnpack:-}" ]]; then continue; fi
+ if [[ "$curPhase" = patchPhase && -n "${dontPatch:-}" ]]; 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