Built a make bootstrap that runs either make or ninja depending on which is
installed.
This commit is contained in:
@@ -146,7 +146,10 @@ end
|
||||
local function abspath(collection)
|
||||
return dotocollection(collection,
|
||||
function(filename)
|
||||
return concatpath(posix.getcwd(), filename)
|
||||
if not filename:find("^[/$]") then
|
||||
filename = concatpath(posix.getcwd(), filename)
|
||||
end
|
||||
return filename
|
||||
end
|
||||
)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user