diff options
author | say <say@yandex-team.com> | 2023-07-13 10:26:18 +0300 |
---|---|---|
committer | say <say@yandex-team.com> | 2023-07-13 10:26:18 +0300 |
commit | 9f4741d3d4ab7382464d2702a10c1b4e1a32508f (patch) | |
tree | 9c5d5f5f7e010da06b6df8ec02027bb21fd4c832 /build/plugins/pybuild.py | |
parent | d316ccc1ba779ac6d0e017e3d90a753bb3466835 (diff) | |
download | ydb-9f4741d3d4ab7382464d2702a10c1b4e1a32508f.tar.gz |
Disable exteded source search for the whole contrib folder
Diffstat (limited to 'build/plugins/pybuild.py')
-rw-r--r-- | build/plugins/pybuild.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build/plugins/pybuild.py b/build/plugins/pybuild.py index ae30fd897e..3fc8f5e66e 100644 --- a/build/plugins/pybuild.py +++ b/build/plugins/pybuild.py @@ -25,6 +25,9 @@ def is_extended_source_search_enabled(path, unit): return False if unit.get('NO_EXTENDED_SOURCE_SEARCH') == 'yes': return False + # contrib is unfriendly to extended source search + if unit.resolve_arc_path(path).startswith('$S/contrib/'): + return False return True |