authorgravatar for fabio@fabioarnold.deFabio Arnold <fabio@fabioarnold.de> 2023-08-02 11:19:05+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-08-03 09:37:26-07:00
log31979b10065b6ab1d00413648daea5907639819e
treef95d45e1dfa72178ca29f18953e26a1df1caa879
parent88fb4dab81ab67b66600868f9a72892ed77bbb21

Fix compile error in `addVcpkgPaths`


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Build/Step/Compile.zig+1-1
...@@ -1149,7 +1149,7 @@ pub fn addVcpkgPaths(self: *Compile, linkage: Compile.Linkage) !void {...@@ -1149,7 +1149,7 @@ pub fn addVcpkgPaths(self: *Compile, linkage: Compile.Linkage) !void {
11491149
1150 const include_path = b.pathJoin(&.{ root, "installed", triplet, "include" });1150 const include_path = b.pathJoin(&.{ root, "installed", triplet, "include" });
1151 errdefer allocator.free(include_path);1151 errdefer allocator.free(include_path);
1152 try self.include_dirs.append(IncludeDir{ .raw_path = include_path });1152 try self.include_dirs.append(IncludeDir{ .path = .{ .path = include_path } });
11531153
1154 const lib_path = b.pathJoin(&.{ root, "installed", triplet, "lib" });1154 const lib_path = b.pathJoin(&.{ root, "installed", triplet, "lib" });
1155 try self.lib_paths.append(.{ .path = lib_path });1155 try self.lib_paths.append(.{ .path = lib_path });