aboutsummaryrefslogtreecommitdiff
path: root/bldit.lua
diff options
context:
space:
mode:
Diffstat (limited to 'bldit.lua')
-rw-r--r--bldit.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/bldit.lua b/bldit.lua
index 11744e8..4a4ea1d 100644
--- a/bldit.lua
+++ b/bldit.lua
@@ -6,9 +6,9 @@ global_dependencies = {}
targets = {
default = {
dependencies = {}
- compile = function() os.execute("make") end
+ compile = function(name) os.execute("make") end
pre_install = function() end
- install = function() os.execute("make install") end
+ install = function(prefix) os.execute("make install") end
post_install = function() end
}
}