aboutsummaryrefslogtreecommitdiff
path: root/build2/version/module.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-05-19 12:32:19 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-05-19 12:32:19 +0200
commit10ea003c84f01b7b9685123291a19e9c562221f7 (patch)
treeb2f718e46a789d669c533cc0d598e8565bcbab9c /build2/version/module.hxx
parent4947e501153d457ce25a49d8cc3c82b4be307b1a (diff)
Implement manifest installation rule in version module
Diffstat (limited to 'build2/version/module.hxx')
-rw-r--r--build2/version/module.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/build2/version/module.hxx b/build2/version/module.hxx
index e057e7d..e24ce88 100644
--- a/build2/version/module.hxx
+++ b/build2/version/module.hxx
@@ -26,6 +26,7 @@ namespace build2
butl::standard_version version;
bool committed; // Whether this is a committed snapshot.
+ bool rewritten; // Whether this is a rewritten .z snapshot.
dependency_constraints dependencies;
@@ -36,9 +37,11 @@ namespace build2
module (butl::standard_version v,
bool c,
+ bool r,
dependency_constraints d)
: version (move (v)),
committed (c),
+ rewritten (r),
dependencies (move (d)) {}
};
}