From 27b666dbbabb1635fb523445ac154253098f73fd Mon Sep 17 00:00:00 2001 From: Isaac Freund Date: Mon, 31 Aug 2020 15:23:01 +0200 Subject: 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. --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 23aa3e6..cca6b87 100644 --- a/build.zig +++ b/build.zig @@ -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), }; } -- cgit v1.2.3