boost: fix table concat

pull/5000/head
star9029 3 months ago
parent ac6c846a98
commit 9b9642fe71
  1. 4
      packages/b/boost/xmake.lua

@ -282,9 +282,7 @@ package("boost")
local info = dep:fetch({external = false})
if info then
local includedirs = table.wrap(info.sysincludedirs or info.includedirs)
if #includedirs == 0 then
includedirs = ""
else
if #includedirs != 0 then
for i, dir in ipairs(includedirs) do
includedirs[i] = path.unix(dir)
end

Loading…
Cancel
Save