aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/install
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/install')
-rw-r--r--libbuild2/install/init.cxx1
-rw-r--r--libbuild2/install/utility.cxx2
2 files changed, 3 insertions, 0 deletions
diff --git a/libbuild2/install/init.cxx b/libbuild2/install/init.cxx
index 50c0a05..25dc845 100644
--- a/libbuild2/install/init.cxx
+++ b/libbuild2/install/init.cxx
@@ -421,6 +421,7 @@ namespace build2
// of this scope. Valid values are:
//
// project -- project scope
+ // bundle -- bundle amalgamation
// strong -- strong amalgamation
// weak -- weak amalgamation
// global -- all projects (default)
diff --git a/libbuild2/install/utility.cxx b/libbuild2/install/utility.cxx
index 12215f8..17b1365 100644
--- a/libbuild2/install/utility.cxx
+++ b/libbuild2/install/utility.cxx
@@ -18,6 +18,8 @@ namespace build2
{
if (*s == "project")
return &t.root_scope ();
+ else if (*s == "bundle")
+ return &t.bundle_scope ();
else if (*s == "strong")
return &t.strong_scope ();
else if (*s == "weak")