diff options
author | 2011-03-15 20:17:28 +0000 | |
---|---|---|
committer | 2011-03-15 20:17:28 +0000 | |
commit | 587a72ab1bc66186c7f1db82d57195d12ab8f2d2 (patch) | |
tree | e65d78ab652d5b0e04287644e7bdfb802262faf5 | |
parent | 81a164c94912d9f650ff352110ee47839de8edea (diff) | |
download | paludis-587a72ab1bc66186c7f1db82d57195d12ab8f2d2.tar.gz paludis-587a72ab1bc66186c7f1db82d57195d12ab8f2d2.tar.xz |
Use !? for synthetic blockers
-rw-r--r-- | paludis/resolver/make_uninstall_blocker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/resolver/make_uninstall_blocker.cc b/paludis/resolver/make_uninstall_blocker.cc index 34ee3a72b..ff6a5572e 100644 --- a/paludis/resolver/make_uninstall_blocker.cc +++ b/paludis/resolver/make_uninstall_blocker.cc @@ -29,7 +29,7 @@ using namespace paludis::resolver; BlockDepSpec paludis::resolver::make_uninstall_blocker(const PackageDepSpec & spec) { - BlockDepSpec result("!" + stringify(spec), spec); + BlockDepSpec result("!?" + stringify(spec), spec); auto annotations(std::make_shared<DepSpecAnnotations>()); annotations->add(make_named_values<DepSpecAnnotation>( n::key() = "<resolution>", |