diff options
Diffstat (limited to 'bldit.lua')
| -rw-r--r-- | bldit.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 } } |
