aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-03-05 13:40:52 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-03-06 01:56:20 +0300
commit77c639f4db23b554c7d453dcfd012e7dfbc3dea6 (patch)
treeac4a82d7754823a67e9cc5047edd658da9e7e54c
parentf16900e834f6078cd99fdb35372e55845d7101e6 (diff)
Align with latest bdep-new
-rw-r--r--bbot/buildfile17
1 files changed, 12 insertions, 5 deletions
diff --git a/bbot/buildfile b/bbot/buildfile
index 857e0a1..dbb32c6 100644
--- a/bbot/buildfile
+++ b/bbot/buildfile
@@ -9,9 +9,13 @@
# update for install).
#
define service: file
-service{*}: extension = service
-service{*}: install = lib/systemd/system/
-service{*}: install.mode = 644
+
+service{*}:
+{
+ extension = service
+ install = lib/systemd/system/
+ install.mode = 644
+}
import libs = libbutl%lib{butl}
import libs += libbbot%lib{bbot}
@@ -70,6 +74,9 @@ if $cli.configured
# them when cleaning in src (so that clean results in a state identical to
# distributed).
#
- cli.cxx{*}: dist = true
- cli.cxx{*}: clean = ($src_root != $out_root)
+ cli.cxx{*}:
+ {
+ dist = true
+ clean = ($src_root != $out_root)
+ }
}