aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-10-07 16:08:45 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-10-07 16:08:45 +0200
commitee05a694940146cbb8cc9d0d6202b14802fcf593 (patch)
tree1927321535f446d0ef7b61b2c1205104c8ae29a3
parent7b20427da02dcb99fa14b97e116793956554bb70 (diff)
Fix installation of exe{} prerequisites
-rw-r--r--libbutl/buildfile15
1 files changed, 9 insertions, 6 deletions
diff --git a/libbutl/buildfile b/libbutl/buildfile
index 135733c..f03bdf1 100644
--- a/libbutl/buildfile
+++ b/libbutl/buildfile
@@ -5,13 +5,16 @@ import libs = libbutl%lib{butl}
./: bash{$path.base($path.base(*.bash.in))}
-bash{utility}: in{utility}
-bash{manifest-parser}: in{manifest-parser} bash{utility} exe{manifest}
-bash{manifest-serializer}: in{manifest-serializer} bash{utility} exe{manifest}
+bash{utility}: in{utility}
-bash{standard-version}: in{standard-version} \
- bash{utility} \
- exe{standard-version}
+bash{manifest-parser}: in{manifest-parser} bash{utility}
+bash{manifest-parser}: exe{manifest}: install = true
+
+bash{manifest-serializer}: in{manifest-serializer} bash{utility}
+bash{manifest-serializer}: exe{manifest}: install = true
+
+bash{standard-version}: in{standard-version} bash{utility}
+bash{standard-version}: exe{standard-version}: install = true
exe{manifest}: cxx{manifest} $libs
exe{standard-version}: cxx{standard-version} $libs