diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-09T15·02+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-09T15·02+0000 |
commit | 2b95a9dc05d0a943859ba92bb301c294473758f1 (patch) | |
tree | 7eb1a6af395553a2c9af6a072820bcaf3f040e76 /src/fix.cc | |
parent | 9a99dc736d814f41d2b3ceb92da2435ae2dd5632 (diff) |
* When computing the set of paths referenced by an expression, also
include the paths of the subterms.
Diffstat (limited to 'src/fix.cc')
-rw-r--r-- | src/fix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fix.cc b/src/fix.cc index b4626f71f329..d17e7b550276 100644 --- a/src/fix.cc +++ b/src/fix.cc @@ -180,7 +180,7 @@ static Expr evalExpr(Expr e) SYSTEM, builder.c_str(), ins, out.c_str(), env); /* Write the resulting term into the Nix store directory. */ - Hash eHash = writeTerm(e); + Hash eHash = writeTerm(e, "-d-" + name); return ATmake("Include(<str>)", ((string) eHash).c_str()); } |