diff options
Diffstat (limited to 'libbrep')
-rw-r--r-- | libbrep/package.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libbrep/package.cxx b/libbrep/package.cxx index 1b7c4f6..b985af3 100644 --- a/libbrep/package.cxx +++ b/libbrep/package.cxx @@ -117,9 +117,9 @@ namespace brep sha256sum (move (sh)) { if (stub ()) - unbuildable_reason = unbuildable_reason::stub; + unbuildable_reason = brep::unbuildable_reason::stub; else if (!internal_repository->buildable) - unbuildable_reason = unbuildable_reason::unbuildable; + unbuildable_reason = brep::unbuildable_reason::unbuildable; buildable = !unbuildable_reason; @@ -140,8 +140,8 @@ namespace brep build_constraints (move (bc)), buildable (false), unbuildable_reason (stub () - ? unbuildable_reason::stub - : unbuildable_reason::external) + ? brep::unbuildable_reason::stub + : brep::unbuildable_reason::external) { assert (!rp->internal); other_repositories.emplace_back (move (rp)); |