Skip to content

Commit

Permalink
Fix GTK package dependency name on Linux (#5748)
Browse files Browse the repository at this point in the history
Change the GTK package dependency from "gtk+3" to "gtk3" to match the correct package name
  • Loading branch information
XIADENGMA authored Nov 13, 2024
1 parent d281586 commit f145085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/o/opencv/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ package("opencv")
end
if package:is_plat("linux") then
if package:config("gtk") then
package:add("deps", "gtk+3", {optional = true})
package:add("deps", "gtk3", {optional = true})
end
end
if not package:is_precompiled() then
Expand Down

0 comments on commit f145085

Please sign in to comment.