From 1469a8e53d08a55caa46953c45a91809d6600c81 Mon Sep 17 00:00:00 2001 From: maxcodehack Date: Sun, 13 Dec 2020 11:47:17 +0000 Subject: [PATCH] Fix autobuild git-svn-id: svn://kolibrios.org@8388 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/other/tte/Tupfile.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/other/tte/Tupfile.lua b/programs/other/tte/Tupfile.lua index 9a75da524d..0299666ef0 100755 --- a/programs/other/tte/Tupfile.lua +++ b/programs/other/tte/Tupfile.lua @@ -1,5 +1,5 @@ if tup.getconfig("NO_GCC") ~= "" 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_gcc.lua") tup.include(HELPERDIR .. "/use_newlib.lua")