Skip to content

Commit 9b9642f

Browse files
committed
boost: fix table concat
1 parent ac6c846 commit 9b9642f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/b/boost/xmake.lua

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,9 +282,7 @@ package("boost")
282282
local info = dep:fetch({external = false})
283283
if info then
284284
local includedirs = table.wrap(info.sysincludedirs or info.includedirs)
285-
if #includedirs == 0 then
286-
includedirs = ""
287-
else
285+
if #includedirs != 0 then
288286
for i, dir in ipairs(includedirs) do
289287
includedirs[i] = path.unix(dir)
290288
end

0 commit comments

Comments
 (0)