| author | |
| committer | |
| log | 60a332406c10be922568e11dcc5144bb0f2d7a85 |
| tree | d772129658d04cd5edb1c9e489bdace4f27d42ea |
| parent | 2aea7a42b085f1775889f9d49141faa8098221f9 |
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 | }; |