From 2508d4d0e05ef55beb3a4db52aa01424eedb4226 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 20 Jul 2017 15:30:21 +0300 Subject: Make package manifest build inclusions and exclusions order significant --- mod/mod-package-version-details.cxx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'mod/mod-package-version-details.cxx') diff --git a/mod/mod-package-version-details.cxx b/mod/mod-package-version-details.cxx index 0138154..edab232 100644 --- a/mod/mod-package-version-details.cxx +++ b/mod/mod-package-version-details.cxx @@ -384,14 +384,11 @@ handle (request& rq, response& rs) { for (const auto& bc: pkg->build_constraints) { - if (!bc.exclusion && match (bc.config, bc.target, c)) - return false; - } - - for (const auto& bc: pkg->build_constraints) - { - if (bc.exclusion && match (bc.config, bc.target, c)) + if (match (bc.config, bc.target, c)) { + if (!bc.exclusion) + return false; + // Save the first sentence of the exclusion comment, lower-case the // first letter if the beginning looks like a word (the second // character is the lower-case letter or space). -- cgit v1.1