aboutsummaryrefslogtreecommitdiff
path: root/build2/install/init.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/install/init.cxx')
-rw-r--r--build2/install/init.cxx11
1 files changed, 10 insertions, 1 deletions
diff --git a/build2/install/init.cxx b/build2/install/init.cxx
index 757d4ef..b5fd007 100644
--- a/build2/install/init.cxx
+++ b/build2/install/init.cxx
@@ -7,6 +7,7 @@
#include <build2/scope.hxx>
#include <build2/target.hxx>
#include <build2/rule.hxx>
+#include <build2/function.hxx>
#include <build2/operation.hxx>
#include <build2/diagnostics.hxx>
@@ -125,12 +126,20 @@ namespace build2
}
void
+ functions (); // functions.cxx
+
+ void
boot (scope& r, const location&, unique_ptr<module_base>&)
{
tracer trace ("install::boot");
-
l5 ([&]{trace << "for " << r.out_path ();});
+ // Register install function family if this is the first instance of the
+ // install modules.
+ //
+ if (!function_family::defined ("install"))
+ functions ();
+
// Register the install and uninstall operations.
//
r.operations.insert (install_id, install);