Fix unfortunate typo

This commit is contained in:
Antoine 2024-10-03 16:31:34 +02:00
parent a373b82991
commit 5ba009c755

View File

@ -12,7 +12,7 @@ pub fn build(b: *std.Build) !void {
const upstream = b.dependency("libressl", .{}); const upstream = b.dependency("libressl", .{});
const libressl_common: LibreSslCommon = .{ const libressl_common: LibreSslCommon = .{
.libcrypto = b.addStaticLibrary(.{ .libcrypto = b.addStaticLibrary(.{
.name = "cypto", .name = "crypto",
.target = target, .target = target,
.optimize = optimize, .optimize = optimize,
}), }),