diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-05T12·31+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-05T12·31+0100 |
commit | 743e31004682f6444c1c891c802233d52b106ee3 (patch) | |
tree | 43ef753e03c35054a8ef0fb835e0cf0319241de9 /src/libstore/build.cc | |
parent | 29c0199d5c53cec59cfb44c94a4c9651b1c034b4 (diff) |
Fix non-Darwin build
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r-- | src/libstore/build.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 02faa5c9d873..b41daac99159 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -1729,9 +1729,11 @@ void DerivationGoal::startBuilder() if (get(drv->env, "__noChroot") == "1") throw Error(format("derivation ‘%1%’ has ‘__noChroot’ set, " "but that's not allowed when ‘build-use-sandbox’ is ‘true’") % drvPath); +#if __APPLE__ if (additionalSandboxProfile != "") throw Error(format("derivation ‘%1%’ specifies a sandbox profile, " "but this is only allowed when ‘build-use-sandbox’ is ‘relaxed’") % drvPath); +#endif useChroot = true; } else if (x == "false") |