diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-06 20:28:22 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-07-10 21:38:45 +0300 |
commit | 4b9be1cb87c4759ca08aa89acd9e9fd7ba5b18be (patch) | |
tree | 6a591f70c02cee552d6b97abc5d8b3958acb168d /clean/clean.cxx | |
parent | 6a2e318a38ec57c61a6c1b9a11cdf96dffe5a63e (diff) |
Add support for build include/exclude manifest values
Diffstat (limited to 'clean/clean.cxx')
-rw-r--r-- | clean/clean.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clean/clean.cxx b/clean/clean.cxx index f6d7eff..bec297b 100644 --- a/clean/clean.cxx +++ b/clean/clean.cxx @@ -200,8 +200,8 @@ try package_name = b.package_name; package_versions.clear (); - for (auto& v: pkg_prep_query.execute ()) - package_versions.emplace (move (v.version)); + for (auto& p: pkg_prep_query.execute ()) + package_versions.emplace (move (p.version)); } cleanup = package_versions.find (b.package_version) == |