diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-10-19T17·43+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-10-19T17·43+0000 |
commit | 17f4883bfeb27c3fb6f28bd8ff8c6bbf65e6ea84 (patch) | |
tree | 59ef5c38868370f7771eef239e2fafd0969a2f2e /src/libexpr/primops.cc | |
parent | 9bd93f76069fdf25688ce984a17798ab0834202f (diff) |
* Better message.
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r-- | src/libexpr/primops.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index d5708f96b754..8118f840106f 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -372,7 +372,7 @@ static Expr primToFile(EvalState & state, const ATermVector & args) for (PathSet::iterator i = context.begin(); i != context.end(); ++i) { if (isDerivation(*i)) - throw EvalError("in `toFile': the file cannot refer to derivation outputs"); + throw EvalError(format("in `toFile': the file `%1%' cannot refer to derivation outputs") % name); refs.insert(*i); } |