From 0263fceef056e58c7e2ef3e6a84dd7e0ab41ecdb Mon Sep 17 00:00:00 2001 From: "Kirill Lipatov (Leency)" Date: Wed, 6 Sep 2017 12:38:31 +0000 Subject: [PATCH] lod: add to autobuild git-svn-id: svn://kolibrios.org@6952 a494cfbc-eb01-0410-851d-a64ba20cac60 --- data/Tupfile.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/data/Tupfile.lua b/data/Tupfile.lua index 96a9cc30ea..3aae67b43e 100644 --- a/data/Tupfile.lua +++ b/data/Tupfile.lua @@ -518,11 +518,12 @@ end -- tup.getconfig('NO_FASM') ~= 'full' -- Programs that require NASM to compile. if tup.getconfig('NO_NASM') ~= 'full' then tup.append_table(img_files, { + {"LOD", PROGS .. "/fs/lod/lod"}, + {"TINFO", PROGS .. "/system/tinfo/tinfo"}, {"DEMOS/ACLOCK", PROGS .. "/demos/aclock/trunk/aclock"}, {"DEMOS/TIMER", PROGS .. "/other/Timer/timer"}, - {"GAMES/C4", PROGS .. "/games/c4/trunk/c4"}, - {"TINFO", PROGS .. "/system/tinfo/tinfo"}, {"DEVELOP/MSTATE", PROGS .. "/develop/mstate/mstate"}, + {"GAMES/C4", PROGS .. "/games/c4/trunk/c4"}, }) end -- tup.getconfig('NO_NASM') ~= 'full'