diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-03-01T17·44+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-03-01T17·44+0000 |
commit | 74166f2f44a9d2de6dc7862a99e9c2f2bcc9b54b (patch) | |
tree | e86f73468d659b814034db218447f7fe86fc8788 /src/libstore/build.cc | |
parent | 1bdceb421fe0082213e012362c1ac6a47ee6e4bb (diff) |
* db.hh shouldn't depend on the Berkeley DB headers.
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r-- | src/libstore/build.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 85c89f2c5a1a..2f6d69d3e15e 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -1,4 +1,5 @@ #include <map> +#include <iostream> #include <sstream> #include <boost/shared_ptr.hpp> #include <boost/weak_ptr.hpp> @@ -922,7 +923,7 @@ DerivationGoal::HookReply DerivationGoal::tryBuildHook() (worker.canBuildMore() ? (string) "1" : "0").c_str(), thisSystem.c_str(), drv.platform.c_str(), - drvPath.c_str(), 0); + drvPath.c_str(), NULL); throw SysError(format("executing `%1%'") % buildHook); |