| author | |
| committer | |
| log | ff16a7c3fa29c95edefc8496114d577b4037fe6f |
| tree | d6de8dbdc793694ecb92f77855df3dd864018774 |
| parent | 08b2fd46ab79e1f381e360c01a4f66abff8cb4b7 |
| signature |
1 files changed, 4 insertions(+), 1 deletions(-)
lib/std/Build.zig+4-1| ... | ... | @@ -2524,7 +2524,10 @@ pub const LazyPath = union(enum) { |
| 2524 | 2524 | .up = gen.up, |
| 2525 | 2525 | .sub_path = dupePathInner(allocator, gen.sub_path), |
| 2526 | 2526 | } }, |
| 2527 | .dependency => |dep| .{ .dependency = dep }, | |
| 2527 | .dependency => |dep| .{ .dependency = .{ | |
| 2528 | .dependency = dep.dependency, | |
| 2529 | .sub_path = dupePathInner(allocator, dep.sub_path), | |
| 2530 | } }, | |
| 2528 | 2531 | }; |
| 2529 | 2532 | } |
| 2530 | 2533 | }; |