aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorsvidyuk <svidyuk@yandex-team.com>2023-08-30 20:31:54 +0300
committersvidyuk <svidyuk@yandex-team.com>2023-08-30 20:50:06 +0300
commitc76aaf823d18acf064939d806427b39cea1bbe16 (patch)
treed85585d1cea05124f3f264965654164b38a0591e /build
parente7fbce1e36ca8d9a32abcc07805749d572a83dd3 (diff)
downloadydb-c76aaf823d18acf064939d806427b39cea1bbe16.tar.gz
Fix input variable missprint
Diffstat (limited to 'build')
-rw-r--r--build/ymake.core.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf
index 6b2ab9003e3..818c025b0ae 100644
--- a/build/ymake.core.conf
+++ b/build/ymake.core.conf
@@ -4762,7 +4762,7 @@ macro BPF_STATIC(Input, Output, Opts...) {
### Note: Output name is used as is, no extension added.
macro LLVM_COMPILE_LL(Input, Output, Opts...) {
.CMD=${CLANG_BC_ROOT}/bin/llvm-as ${input:Input} -o ${output;noauto:Output} ${kv;hide:"p BC"} ${kv;hide:"pc light-green"}
- .SEM=add_custom_command OUTPUT ${output;noauto:Output} DEPENDS ${input:Inputs} COMMAND ${LLVMAS} ${input:Inputs} -o ${output;noauto:Output}
+ .SEM=add_custom_command OUTPUT ${output;noauto:Output} DEPENDS ${input:Input} COMMAND ${LLVMAS} ${input:Input} -o ${output;noauto:Output}
PEERDIR(build/platform/clang)
}