diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-06-22T11·03+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-06-22T11·03+0000 |
commit | 5e2cf44a4d5d70f0dbed7b21257bd6d15538b3b2 (patch) | |
tree | 026f0ca4fc71c0d563a1de36b86ccad9156fc594 /src/libstore/normalise.cc | |
parent | 84007a09588b21487cbd3869bcb26c3e2c05b605 (diff) |
* Put WEXITSTATUS stuff somewhere else.
Diffstat (limited to 'src/libstore/normalise.cc')
-rw-r--r-- | src/libstore/normalise.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/normalise.cc b/src/libstore/normalise.cc index 56ce5da7d10a..1632ad1fb6ce 100644 --- a/src/libstore/normalise.cc +++ b/src/libstore/normalise.cc @@ -501,7 +501,7 @@ void NormalisationGoal::buildDone() debug(format("builder process for `%1%' finished") % nePath); /* Check the exit status. */ - if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { + if (!statusOk(status)) { deleteTmpDir(false); throw Error(format("builder for `%1%' %2%") % nePath % statusToString(status)); @@ -1371,7 +1371,7 @@ void SubstitutionGoal::finished() debug(format("substitute for `%1%' finished") % storePath); /* Check the exit status. */ - if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) + if (!statusOk(status)) throw Error(format("builder for `%1%' %2%") % storePath % statusToString(status)); |