| author | |
| committer | |
| log | 6fcb1897d263130b5ff7a25dd12f027bddd75b2f |
| tree | 8e19d824bcb4451dd7903defe7711e1cfab48eac |
| parent | a966eee090d55c7d61484333af675c80115bf188 |
The cache hash already has the zig version in there, so it's not really
needed.1 files changed, 0 insertions(+), 5 deletions(-)
lib/std/Build/Step/WriteFile.zig-5| ... | ... | @@ -189,11 +189,6 @@ fn make(step: *Step, prog_node: std.Progress.Node) !void { |
| 189 | 189 | var man = b.graph.cache.obtain(); |
| 190 | 190 | defer man.deinit(); |
| 191 | 191 | |
| 192 | // Random bytes to make WriteFile unique. Refresh this with | |
| 193 | // new random bytes when WriteFile implementation is modified | |
| 194 | // in a non-backwards-compatible way. | |
| 195 | man.hash.add(@as(u32, 0xc2a287d0)); | |
| 196 | ||
| 197 | 192 | for (write_file.files.items) |file| { |
| 198 | 193 | man.hash.addBytes(file.sub_path); |
| 199 | 194 |