From 32916e04f7e1729b7ea5ab768607eb08183c015d Mon Sep 17 00:00:00 2001 From: "yarl-baudig@mailoo.org" Date: Tue, 17 May 2022 23:08:54 +0200 Subject: daemon: runChild() is forbidden to talk during environment set up MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DerivationGoal::startBuilder() is waiting for an empty line as a check that the environment set up is fine. Fixes . * nix/libstore/build.cc (DerivationGoal::runChild): Remove 'debug' statement corresponding to bind mounts. Signed-off-by: Ludovic Courtès --- nix/libstore/build.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'nix') diff --git a/nix/libstore/build.cc b/nix/libstore/build.cc index f6431bb726..9305208009 100644 --- a/nix/libstore/build.cc +++ b/nix/libstore/build.cc @@ -2057,7 +2057,6 @@ void DerivationGoal::runChild() Path source = i->second; Path target = chrootRootDir + i->first; if (source == "/proc") continue; // backwards compatibility - debug(format("bind mounting `%1%' to `%2%'") % source % target); if (stat(source.c_str(), &st) == -1) throw SysError(format("getting attributes of path `%1%'") % source); if (S_ISDIR(st.st_mode)) -- cgit v1.2.3