diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-09-05 09:22:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-09-05 09:22:06 +0200 |
commit | b6746495ce6ee4ba5e3b414a7e401a8135ee1508 (patch) | |
tree | 9d18724c0144b9d4113f8ca2af30173aa210cc57 /load | |
parent | 207e5156c5664822e0aee8bcc3057adc61027f5b (diff) |
Add support for build-time dependencies
Diffstat (limited to 'load')
-rw-r--r-- | load/load.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/load/load.cxx b/load/load.cxx index 3b19ae3..79b0ace 100644 --- a/load/load.cxx +++ b/load/load.cxx @@ -383,7 +383,7 @@ load_packages (const shared_ptr<repository>& rp, database& db) for (auto& pda: pm.dependencies) { - ds.emplace_back (pda.conditional, move (pda.comment)); + ds.emplace_back (pda.conditional, pda.buildtime, move (pda.comment)); for (auto& pd: pda) // Proper version will be assigned during dependency resolution |