From 4e6a2fbc561f3e692a5644b3816a205ba769f39e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 24 Jan 2017 15:31:54 +0100 Subject: Revert "Propagate path context via builtins.readFile" This reverts commit f7f0116dd727ac954fb04d9ef9b9fe7ec034e563. Issue #1174. --- src/libexpr/primops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libexpr') diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 4398cc951da2..59623874c3f5 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -779,7 +779,7 @@ static void prim_readFile(EvalState & state, const Pos & pos, Value * * args, Va string s = readFile(state.checkSourcePath(path)); if (s.find((char) 0) != string::npos) throw Error(format("the contents of the file ‘%1%’ cannot be represented as a Nix string") % path); - mkString(v, s.c_str(), context); + mkString(v, s.c_str()); } -- cgit 1.4.1