From 2288073366c8899154071c69d9d5e7cb9dc9a4bf Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Mon, 31 Jul 2023 20:51:34 -0700 Subject: [PATCH] build: workaround Zig package manager issue Signed-off-by: Stephen Gutekanst --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 580e9bb7..e478c159 100644 --- a/build.zig +++ b/build.zig @@ -158,7 +158,7 @@ pub const App = struct { .target = app.compile.target, .optimize = app.compile.optimize, }); - const harfbuzz_dep = app.b.dependency("harfbuzz", .{ + const harfbuzz_dep = app.b.dependency("mach_freetype.harfbuzz", .{ .target = app.compile.target, .optimize = app.compile.optimize, .enable_freetype = true,