Merge bldit.lua fixes
This commit is contained in:
commit
648da32d14
1 changed files with 2 additions and 4 deletions
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue