From 33e4cbb20f7cac71e5feaeeeb4c7576ab4708697 Mon Sep 17 00:00:00 2001 From: GethDW Date: Mon, 31 Jul 2023 10:27:54 +0100 Subject: [PATCH] std.Build.Step.WriteFile: fix call to nonexistent function --- lib/std/Build/Step/WriteFile.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/Build/Step/WriteFile.zig b/lib/std/Build/Step/WriteFile.zig index 51db4bb3c391f2680e23d71d0374e05f9afb4986..01019274fd919172d9e17540ff029b111539af1f 100644 --- a/lib/std/Build/Step/WriteFile.zig +++ b/lib/std/Build/Step/WriteFile.zig @@ -96,7 +96,7 @@ pub fn addCopyFile(wf: *WriteFile, source: std.Build.LazyPath, sub_path: []const wf.maybeUpdateName(); source.addStepDependencies(&wf.step); - return file.getLazyPath(); + return file.getPath(); } /// A path relative to the package root. -- 2.54.0