diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-07-09 21:08:20 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-07-12 00:14:08 -0700 |
| commit | 0cc492a272ef9c03a34b57a26bf570b242615ddf (patch) | |
| tree | 8b3ce5767406aeb02c16f4c3538b1ddcaf89d62d /lib/std/Build/Step/CheckObject.zig | |
| parent | 956f1ebc707f8a2530e49b80357768f3bf1235ac (diff) | |
| download | zig-0cc492a272ef9c03a34b57a26bf570b242615ddf.tar.gz zig-0cc492a272ef9c03a34b57a26bf570b242615ddf.zip | |
make more build steps integrate with the watch system
Diffstat (limited to 'lib/std/Build/Step/CheckObject.zig')
| -rw-r--r-- | lib/std/Build/Step/CheckObject.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/std/Build/Step/CheckObject.zig b/lib/std/Build/Step/CheckObject.zig index f25708c55b..93ee57e3b4 100644 --- a/lib/std/Build/Step/CheckObject.zig +++ b/lib/std/Build/Step/CheckObject.zig @@ -555,6 +555,7 @@ fn make(step: *Step, prog_node: std.Progress.Node) !void { const b = step.owner; const gpa = b.allocator; const check_object: *CheckObject = @fieldParentPtr("step", step); + try step.singleUnchangingWatchInput(check_object.source); const src_path = check_object.source.getPath2(b, step); const contents = fs.cwd().readFileAllocOptions( |
