diff options
author | AlexSm <alex@ydb.tech> | 2023-12-22 17:10:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-22 17:10:22 +0100 |
commit | 148f920350c60c0ca2d89b637a5aea9093eee450 (patch) | |
tree | 6314b1433dac833398c333731e83f0ad77e81a0b /build/ymake.core.conf | |
parent | 7116d46ae7c0259b5f9d489de263f8701e432b1c (diff) | |
download | ydb-148f920350c60c0ca2d89b637a5aea9093eee450.tar.gz |
Library import 2 (#639)
Diffstat (limited to 'build/ymake.core.conf')
-rw-r--r-- | build/ymake.core.conf | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 432ddb2dc3..5161f03424 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -3222,9 +3222,12 @@ macro _SRC_py3src(SRC, SRCFLAGS...) { when ($PYTHON3 == "yes") { _SRC_PYSRC_CMDLINE=$_SRC_py3src($SRC $SRCFLAGS) } -otherwise { +elsewhen ($PYTHON2 == "yes") { _SRC_PYSRC_CMDLINE=$_SRC_py2src($SRC $SRCFLAGS) } +otherwise { + _SRC_PYSRC_CMDLINE= +} # tag:src-processing tag:python-specific macro _SRC_PYSRC(SRC, SRCFLAGS...) { |