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:
@ -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),
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user