From 5ba009c7557cb77153e37df24af8d015e3f4940b Mon Sep 17 00:00:00 2001 From: Antoine Date: Thu, 3 Oct 2024 16:31:34 +0200 Subject: [PATCH] Fix unfortunate typo --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 81b4dff..c26b3d5 100644 --- a/build.zig +++ b/build.zig @@ -12,7 +12,7 @@ pub fn build(b: *std.Build) !void { const upstream = b.dependency("libressl", .{}); const libressl_common: LibreSslCommon = .{ .libcrypto = b.addStaticLibrary(.{ - .name = "cypto", + .name = "crypto", .target = target, .optimize = optimize, }),