aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/build.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-06-23 09:15:35 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-10 13:35:44 +0200
commit7911e4c27a0020a61ace13cfdc44de4af02f315e (patch)
treedb7d61bae393b67ed0a57e29aa2cd8ac99d655a1 /src/libstore/build.cc
parent04170d06bf7d17f882c01d3ab98885e0f3e46d2f (diff)
Remove maybeVfork
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r--src/libstore/build.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc
index f38cd2994..70a3effb2 100644
--- a/src/libstore/build.cc
+++ b/src/libstore/build.cc
@@ -602,7 +602,7 @@ HookInstance::HookInstance()
builderOut.create();
/* Fork the hook. */
- pid = maybeVfork();
+ pid = fork();
switch (pid) {
case -1:
@@ -2781,7 +2781,7 @@ void SubstitutionGoal::tryToRun()
const char * * argArr = strings2CharPtrs(args);
/* Fork the substitute program. */
- pid = maybeVfork();
+ pid = fork();
switch (pid) {