Autobuild: use (only?) double dots operator to interpolate strings

git-svn-id: svn://kolibrios.org@8723 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2021-05-22 18:02:57 +00:00
parent 4b058cc36e
commit 64e1e52eba
5 changed files with 18 additions and 17 deletions

View File

@@ -8,7 +8,8 @@ function add_include(dir)
end
if tup.getconfig("TUP_PLATFORM") == "win32"
then env_prefix = "set INCLUDE=$(INCLUDES)&&"
else env_prefix = "INCLUDE='$(INCLUDES)' "
-- else env_prefix = "INCLUDE='$(INCLUDES)' "
else env_prefix = "INCLUDE='" .. INCLUDES .. "' "
end
FASM = env_prefix .. FASM_DEFAULT
end