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",
}
local int = {}
if os.getenv("OS") ~= "Windows_NT" then
int[#int+1] = "util/int+pkg"
end
installable {
name = "ack-common",
map = {
@ -41,10 +46,10 @@ installable {
"util/arch+pkg",
"util/ass+pkg",
"util/ego+pkg",
"util/int+pkg",
"util/led+pkg",
"util/misc+pkg",
"util/opt+pkg",
int
},
}