aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-08-23 10:50:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-08-23 10:50:28 +0200
commit16f4f7ccd69c949e7fb99f9b93a8d4d7d6b4215f (patch)
tree0b1caeb5b7b7a41fced57c3ffde0f077a2c8aeaf
parent11d6a94aef457a72d4a685ad226a4417ee1e620c (diff)
Fix install.* variable values in buildfiles
-rw-r--r--odb/buildfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/odb/buildfile b/odb/buildfile
index 4207e23..fa212ea 100644
--- a/odb/buildfile
+++ b/odb/buildfile
@@ -102,7 +102,7 @@ libs{odb}: cxx.export.poptions += -DLIBODB_SHARED
# Install into the odb/ subdirectory of, say, /usr/include/.
#
-install.include = $install.include/odb
+install.include = $install.include/odb/
install.include.subdirs = true # Recreate subdirectories.
if ($cxx.target.class != "windows")
@@ -115,11 +115,11 @@ details/build2/:
if ($cxx.id == "msvc")
{
h{config}@./: install = false
- h{config-vc}@./: install = $install.include/details
+ h{config-vc}@./: install = $install.include/details/
}
else
{
- h{config}@./: install = $install.include/details
+ h{config}@./: install = $install.include/details/
h{config-vc}@./: install = false
}
}