diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-08-31 15:23:01 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-10-02 20:34:24 +0200 |
| commit | 27b666dbbabb1635fb523445ac154253098f73fd (patch) | |
| tree | b4af6050709a59402a8981a2e511ff8bc3d504e6 /build.zig | |
| parent | 0bd8274bd4c1a5c791c3a6bbeff8c39414839eb5 (diff) | |
| download | river-27b666dbbabb1635fb523445ac154253098f73fd.tar.gz river-27b666dbbabb1635fb523445ac154253098f73fd.tar.xz | |
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.
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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), }; } |
