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 = {} dependencies = {}
exec_name = "ray"
targets = { targets = {
default = { default = {
build = function() build = function()
@ -29,11 +27,11 @@ targets = {
return 0 return 0
end, end,
install = function() install = function()
e,h,c = os.execute("make install") e,h,c = os.execute("make install PREFIX="..prefix)
return c or 0 return c or 0
end, end,
uninstall = function() uninstall = function()
e,h,c = os.execute("make uninstall") e,h,c = os.execute("make uninstall PREFIX="..prefix)
return c or 0 return c or 0
end, end,
} }