Merge bldit.lua fixes

This commit is contained in:
cannoli-fruit 2026-07-16 20:24:51 -04:00
commit 648da32d14

View file

@ -3,8 +3,6 @@ package_version = "1.1.3"
dependencies = {}
exec_name = "ray"
targets = {
default = {
build = function()
@ -29,11 +27,11 @@ targets = {
return 0
end,
install = function()
e,h,c = os.execute("make install")
e,h,c = os.execute("make install PREFIX="..prefix)
return c or 0
end,
uninstall = function()
e,h,c = os.execute("make uninstall")
e,h,c = os.execute("make uninstall PREFIX="..prefix)
return c or 0
end,
}