summaryrefslogtreecommitdiff
path: root/buildfile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-06-12 20:06:43 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-06-12 20:06:43 +0200
commit278d320d2062f0aa7bea42ffe2f9877ceeec278c (patch)
tree556ff497c8c1afcd8c78eb2d3c447b0f2f320030 /buildfile
parentcf17f2bc98b51f8ef8eb600de125659056d36983 (diff)
Fix bug in output directory creation
Diffstat (limited to 'buildfile')
-rw-r--r--buildfile8
1 files changed, 6 insertions, 2 deletions
diff --git a/buildfile b/buildfile
index b21fc4e..d4f8627 100644
--- a/buildfile
+++ b/buildfile
@@ -13,8 +13,12 @@ vcpkg/
# .edit, as a specified extension (because the pattern machinery will
# remove .cpp from matches that it has added to the pattern).
#
- vcpkg/exe{vcpkg}: cxx{src/vcpkg/**.cpp +src/vcpkg} \
- hxx{include/vcpkg/**.h +include/pch}
+ # Note that we need the explicit fsdir{} because our distribution won't
+ # have this directory.
+ #
+ vcpkg/exe{vcpkg}: cxx{src/vcpkg/**.cpp +src/vcpkg} \
+ hxx{include/vcpkg/**.h +include/pch} \
+ fsdir{vcpkg/}
cxx.poptions =+ "-I$src_base/include" -DDISABLE_METRICS=1 \
-DVCPKG_VERSION="+$version.revision-build2"