From ef22e9190e6ce65647cbe585faf18008a630dfae Mon Sep 17 00:00:00 2001 From: cannoli-fruit Date: Thu, 16 Jul 2026 20:24:32 -0400 Subject: [PATCH] Cleaned bldit.lua and fixed prefix handling --- bldit.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/bldit.lua b/bldit.lua index 2e35065..2fd0960 100644 --- a/bldit.lua +++ b/bldit.lua @@ -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, }