diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-09-07 10:56:46 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-09-07 10:56:46 +0200 |
commit | b6dfd0e94aad546069eee7749a0b78eda45f6a78 (patch) | |
tree | 1dcc5b7498077323c821daccd911af4d71df5e45 /libbuild2/rule.cxx | |
parent | 7595381c1a6aa75eedae3c982d923ba4154c8e32 (diff) |
Fix fsdir{} handling corner cases in ad hoc buildscript recipes/rulesdist-remap
Diffstat (limited to 'libbuild2/rule.cxx')
-rw-r--r-- | libbuild2/rule.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/rule.cxx b/libbuild2/rule.cxx index 6ede2dd..210f1ef 100644 --- a/libbuild2/rule.cxx +++ b/libbuild2/rule.cxx @@ -195,7 +195,7 @@ namespace build2 // Inject dependency on our directory (note: not parent) so that it is // automatically created on update and removed on clean. // - inject_fsdir (a, t, false); + inject_fsdir (a, t, true, false); match_prerequisites (a, t); return default_recipe; |