Remove touch workaround
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 1m2s
Build system / Build (pull_request) Successful in 16m32s

Signed-off-by: hrigar <h4gar02@protonmail.com>
This commit is contained in:
2026-02-24 22:58:15 +05:30
committed by Max Logaev
parent 499712939e
commit 21abcd2635

View File

@@ -3,5 +3,5 @@ OB07_FLAGS = "-stk 1 -nochk a"
function build_ob07(input, output, extra_flags)
extra_flags = extra_flags or ""
tup.rule(input, OB07 .. " %f kosexe -out %o " .. OB07_FLAGS .. " " .. extra_flags .. " " .. tup.getconfig("KPACK_CMD") .. " && touch %o", output)
tup.rule(input, OB07 .. " %f kosexe -out %o " .. OB07_FLAGS .. " " .. extra_flags .. " " .. tup.getconfig("KPACK_CMD"), output)
end