added feature (which was expected to be) of custom HELPERDIR for some Tupfile's (btw there are still many files with same problem)

git-svn-id: svn://kolibrios.org@9781 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
vitalkrilov 2022-04-24 15:05:38 +00:00
parent 5cbb298e24
commit 3dddd1c687
3 changed files with 6 additions and 12 deletions

View File

@ -1,8 +1,6 @@
if tup.getconfig("NO_TCC") ~= "" then return end if tup.getconfig("NO_TCC") ~= "" then return end
if tup.getconfig("HELPERDIR") == ""
then HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR")
HELPERDIR = "../../../../programs"
end
tup.include(HELPERDIR .. "/use_tcc.lua") tup.include(HELPERDIR .. "/use_tcc.lua")
link_tcc("main.c", "kmatrix"); link_tcc("main.c", "kmatrix");

View File

@ -1,8 +1,6 @@
if tup.getconfig("NO_TCC") ~= "" then return end if tup.getconfig("NO_TCC") ~= "" then return end
if tup.getconfig("HELPERDIR") == ""
then HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../../.." or tup.getconfig("HELPERDIR")
HELPERDIR = "../../../../../programs"
end
tup.include(HELPERDIR .. "/use_tcc.lua") tup.include(HELPERDIR .. "/use_tcc.lua")
LIBS = "-lbox_lib" LIBS = "-lbox_lib"

View File

@ -1,8 +1,6 @@
if tup.getconfig("NO_TCC") ~= "" then return end if tup.getconfig("NO_TCC") ~= "" then return end
if tup.getconfig("HELPERDIR") == ""
then HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../.." or tup.getconfig("HELPERDIR")
HELPERDIR = "../../../programs"
end
tup.include(HELPERDIR .. "/use_tcc.lua") tup.include(HELPERDIR .. "/use_tcc.lua")
if tup.getconfig("LANG") == "ru" if tup.getconfig("LANG") == "ru"