Skip to content

Commit e7a6688

Browse files
authored
Fix case sensitivity in OpenGL package search
1 parent d610ab2 commit e7a6688

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/o/opengl/xmake.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ package("opengl")
1212
end
1313
if opt.system then
1414
if package:is_plat("linux") and package.find_package then
15-
return package:find_package("opengl", opt) or package:find_package("gl", opt)
15+
return package:find_package("OpenGL", opt) or package:find_package("GL", opt)
1616
end
1717
end
1818
end)

0 commit comments

Comments
 (0)