From 9fe59e4f344f5c389c6616b439299f5631ae1de5 Mon Sep 17 00:00:00 2001 From: turbocat Date: Thu, 10 Jun 2021 16:32:10 +0000 Subject: [PATCH] Fixed Tupefile.lua in other programs git-svn-id: svn://kolibrios.org@8813 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/other/PasswordGen/Tupfile.lua | 4 ++-- programs/other/Weather/Tupfile.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/programs/other/PasswordGen/Tupfile.lua b/programs/other/PasswordGen/Tupfile.lua index d15b6c6bc4..a150524145 100644 --- a/programs/other/PasswordGen/Tupfile.lua +++ b/programs/other/PasswordGen/Tupfile.lua @@ -2,9 +2,9 @@ if tup.getconfig("NO_TCC") ~= "" then return end TCC="kos32-tcc" CFLAGS = "-I../../develop/ktcc/trunk/libc.obj/include" -LDFLAGS = "-nostdlib ../ktcc/trunk/bin/lib/crt0.o -L../ktcc/trunk/bin/lib" +LDFLAGS = "-nostdlib ../../develop/ktcc/trunk/bin/lib/crt0.o -L../../develop/ktcc/trunk/bin/lib" LIBS = "-ltcc -lbox -lc.obj" -COMMAND=string.format("%s %s %s %s %s", TCC, CFLAGS, LFLAGS, "%f -o %o", LIBS) +COMMAND=string.format("%s %s %s %s %s", TCC, CFLAGS, LDFLAGS , "%f -o %o", LIBS) tup.rule("passwordgen.c", COMMAND .. tup.getconfig("KPACK_CMD"), "passwordgen") diff --git a/programs/other/Weather/Tupfile.lua b/programs/other/Weather/Tupfile.lua index a8dbc64f7a..76c00f81bb 100644 --- a/programs/other/Weather/Tupfile.lua +++ b/programs/other/Weather/Tupfile.lua @@ -6,5 +6,5 @@ LDFLAGS = "-nostdlib -L../../develop/ktcc/trunk/bin/lib ../../develop/ktcc/trunk LIBS = "-ltcc -limg -lhttp -lc.obj" -COMMAND = string.format("%s %s %s %s ", TCC, CFLAGS, "%f -o %o", LIBS) +COMMAND = string.format("%s %s %s %s %s ", TCC, CFLAGS, LDFLAGS, "%f -o %o", LIBS) tup.rule({"weather.c", "json/json.c"}, COMMAND .. tup.getconfig("KPACK_CMD"), "weather")