diff options
author | svidyuk <svidyuk@yandex-team.ru> | 2022-05-17 06:41:10 +0300 |
---|---|---|
committer | svidyuk <svidyuk@yandex-team.ru> | 2022-05-17 06:41:10 +0300 |
commit | c5a354f54303f9f9252c34f312bad9781bf23b90 (patch) | |
tree | d6d75a71c5f8be2d202bba407b43cf3a9d2b974b | |
parent | 99bba42bc46018bf659dad97441831b168e6c58c (diff) | |
download | ydb-c5a354f54303f9f9252c34f312bad9781bf23b90.tar.gz |
Fix incorrect trigger conditions
ref:b246f7681c9ffcd6c7c4f857c348873860c59165
-rw-r--r-- | build/ymake.core.conf | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index de54cf09eda..480a2f2988f 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -3805,7 +3805,8 @@ LINK_UBERJAR_PROGRAM=$YMAKE_PYTHON ${input:"build/scripts/make_java_classpath_fi # tag:java-specific RUN_WITH_SOURCES=no -TARED_CLASSPATH=yes # TODO jbuild creates tar with all classpath deps by default and some projects rely on this. In ymake build this tar file creation is not needed and should be disabled by default in future +# TODO jbuild creates tar with all classpath deps by default and some projects rely on this. In ymake build this tar file creation is not needed and should be disabled by default in future +TARED_CLASSPATH=yes _JAR_SRCS_CALLED=no # tag:java-specific @@ -3826,7 +3827,7 @@ module _JAR_RUNABLE: _COMPILABLE_JAR_BASE { _SOURCE_JARS_CPLIST=${nopath;rootrel;ext=.jar;pre=$BINDIR/$REALPRJNAME/;noext;suf=-sources.jar:MANAGED_PEERS_CLOSURE} } - when ($_JAR_SRCS_CALLED && $TARED_CLASSPATH) { + when ($TARED_CLASSPATH == "yes") { DO_TAR_CLASSPATH=$TAR_CLASSPATH } |