diff options
author | spreis <spreis@yandex-team.com> | 2024-10-04 09:56:50 +0300 |
---|---|---|
committer | spreis <spreis@yandex-team.com> | 2024-10-04 10:09:17 +0300 |
commit | 8b94a751187ed4a463b7f37023098505492d4574 (patch) | |
tree | 8ccd75079999656984833ca2811d12ec7641e8da /contrib/libs | |
parent | 80474552e4c4cec55e632cf32e0d19f1f1647f93 (diff) | |
download | ydb-8b94a751187ed4a463b7f37023098505492d4574.tar.gz |
Fix flatbuf sandboxing build
Fix for sandboxing builds like https://a.yandex-team.ru/ci-card-preview/23700000012721 (2nd iteration of https://a.yandex-team.ru/review/6927716/details)
Explanation is here https://docs.yandex-team.ru/ya-make/manual/common/macros#induced_deps, the flatbuf command currently emits .cpp in addition to .h (this is need for immediate schema validation by `ya make my/flatfbuf/schemas` build. The headers alone won't trigger any build and so code generation)
commit_hash:f27ec4e20e6fd552df2934802a4a6251893bc53a
Diffstat (limited to 'contrib/libs')
-rw-r--r-- | contrib/libs/flatbuffers/flatc/ya.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/flatbuffers/flatc/ya.make b/contrib/libs/flatbuffers/flatc/ya.make index a5b043ed8d..9bcfd179c5 100644 --- a/contrib/libs/flatbuffers/flatc/ya.make +++ b/contrib/libs/flatbuffers/flatc/ya.make @@ -7,7 +7,7 @@ LICENSE(Apache-2.0) LICENSE_TEXTS(.yandex_meta/licenses.list.txt) INDUCED_DEPS( - h + h+cpp ${ARCADIA_ROOT}/contrib/libs/flatbuffers/include/flatbuffers/flatbuffers.h ${ARCADIA_ROOT}/contrib/libs/flatbuffers/include/flatbuffers/flatbuffers_iter.h ) |