diff options
Diffstat (limited to 'src/libstore/normalise.hh')
-rw-r--r-- | src/libstore/normalise.hh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/libstore/normalise.hh b/src/libstore/normalise.hh index c5257f9b9dc5..96f546aaaa07 100644 --- a/src/libstore/normalise.hh +++ b/src/libstore/normalise.hh @@ -3,13 +3,13 @@ #include "storeexpr.hh" -/* Perform the specified derivation, if necessary. That is, do - whatever is necessary to create the output paths of the - derivation. If the output paths already exists, we're done. If - they have substitutes, we can use those instead. Otherwise, the - build action described by the derivation is performed, after - recursively building any sub-derivations. */ -void buildDerivation(const Path & drvPath); +/* Perform the specified derivations, if necessary. That is, do + whatever is necessary to create the output paths of the derivation. + If the output paths already exists, we're done. If they have + substitutes, we can use those instead. Otherwise, the build action + described by the derivation is performed, after recursively + building any sub-derivations. */ +void buildDerivations(const PathSet & drvPaths); /* Ensure that a path exists, possibly by instantiating it by realising a substitute. */ |