Don't build int on windows; it looks like a dead loss due to reliance on

Unix functionality.
This commit is contained in:
David Given 2022-07-16 23:52:13 +02:00
parent 2abcd7d3bd
commit d0860c12c0

View file

@ -28,6 +28,11 @@ vars.plats_with_tests = {
"pc86", "pc86",
} }
local int = {}
if os.getenv("OS") ~= "Windows_NT" then
int[#int+1] = "util/int+pkg"
end
installable { installable {
name = "ack-common", name = "ack-common",
map = { map = {
@ -41,10 +46,10 @@ installable {
"util/arch+pkg", "util/arch+pkg",
"util/ass+pkg", "util/ass+pkg",
"util/ego+pkg", "util/ego+pkg",
"util/int+pkg",
"util/led+pkg", "util/led+pkg",
"util/misc+pkg", "util/misc+pkg",
"util/opt+pkg", "util/opt+pkg",
int
}, },
} }