code: update to zig master in prep for 0.7.0

This commit makes the minimal necessary changes to get things working,
there are further changes which can be made to take advantage of new
features.
This commit is contained in:
Isaac Freund
2020-08-31 15:23:01 +02:00
parent 0bd8274bd4
commit 27b666dbba
14 changed files with 35 additions and 35 deletions

View File

@ -139,7 +139,7 @@ const ScanProtocolsStep = struct {
fn init(builder: *std.build.Builder) ScanProtocolsStep {
return ScanProtocolsStep{
.builder = builder,
.step = std.build.Step.init("Scan Protocols", builder.allocator, make),
.step = std.build.Step.init(.Custom, "Scan Protocols", builder.allocator, make),
};
}
@ -234,7 +234,7 @@ const ScdocStep = struct {
fn init(builder: *std.build.Builder) ScdocStep {
return ScdocStep{
.builder = builder,
.step = std.build.Step.init("Generate man pages", builder.allocator, make),
.step = std.build.Step.init(.Custom, "Generate man pages", builder.allocator, make),
};
}