diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-12T12·43+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-12T12·43+0100 |
commit | 4acca1a5b94b6f761819cdd2ee4e661896626871 (patch) | |
tree | 88728b96d3fc308f8e7e74c48c1d889245b3776c /src | |
parent | ad790022fddd5627eb237b95acae210c9b00c3de (diff) |
Remove chatty message
This broke building with "-vv", because the builder is not allowed to write to stderr at this point.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/build.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 127fcfd650f7..d759d15bdd68 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -2137,8 +2137,6 @@ void DerivationGoal::runChild() setuid() when run as root sets the real, effective and saved UIDs. */ if (buildUser.enabled()) { - printMsg(lvlChatty, format("switching to user ‘%1%’") % buildUser.getUser()); - if (setgroups(0, 0) == -1) throw SysError("cannot clear the set of supplementary groups"); |