From fbd84338b0bad9a4f28cc1348289e1c41316710c Mon Sep 17 00:00:00 2001
From: Stefan Boca <stefan.r.boca@gmail.com>
Date: Wed, 19 Mar 2025 17:47:58 -0700
Subject: [PATCH] fix(zig-0.14): makeFn signature

---
 build.zig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.zig b/build.zig
index cb0706f..cb16dea 100644
--- a/build.zig
+++ b/build.zig
@@ -126,7 +126,7 @@ const CompressStep = struct {
         return .{ .generated = .{ .file = &self.generated_file } };
     }
 
-    fn make(step: *std.Build.Step, _: std.Progress.Node) anyerror!void {
+    fn make(step: *std.Build.Step, _: std.Build.Step.MakeOptions) anyerror!void {
         const b = step.owner;
         const self: *@This() = @fieldParentPtr("step", step);
         const input_path = self.input.getPath(b);