Plasma: fix broken path in *.tup file
Some checks failed
Build system / Check kernel codestyle (pull_request) Successful in 33s
Build system / Build (pull_request) Failing after 2m7s

This commit is contained in:
2025-03-11 22:16:20 +02:00
parent 4522716daf
commit b5f0451297

View File

@@ -1,5 +1,5 @@
if tup.getconfig("NO_FASM") ~= "" then return end if tup.getconfig("NO_FASM") ~= "" then return end
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR") HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../.." or tup.getconfig("HELPERDIR")
tup.include(HELPERDIR .. "/use_fasm.lua") tup.include(HELPERDIR .. "/use_fasm.lua")
add_include(tup.getvariantdir()) add_include(tup.getvariantdir())