Skip to content

Commit

Permalink
libhubbub: improve gperf
Browse files Browse the repository at this point in the history
  • Loading branch information
star-hengxing committed Sep 29, 2024
1 parent e8d25ae commit 256c5e1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/l/libhubbub/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ package("libhubbub")
end

on_load(function (package)
if is_subhost("windows") and not package:is_precompiled() then
package:add("deps", "strawberry-perl", "gperf")
if not package:is_precompiled() then
package:add("deps", "gperf")
if is_subhost("windows") then
package:add("deps", "strawberry-perl", "gperf")
end
end
end)

Expand Down

0 comments on commit 256c5e1

Please sign in to comment.