Merge pull request #342 from leecannon/patch-2

More changes to std.build :)
This commit is contained in:
Alexandros Naskos 2021-06-16 01:17:04 +03:00 committed by GitHub
commit fdb5e8f9fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ pub fn main() !void {
const builder = try Builder.create(allocator, "", "", "", "");
defer builder.destroy();
builder.resolveInstallPrefix(null);
builder.resolveInstallPrefix(null, Builder.DirList{});
try runBuild(builder);
const stdout_stream = io.getStdOut().writer();