mirror of
https://github.com/MorizzG/gentoo-mg.git
synced 2026-03-21 15:40:07 +00:00
26 lines
901 B
Diff
26 lines
901 B
Diff
From cee948f8e178a7ac5882438590da8aee3317cbb4 Mon Sep 17 00:00:00 2001
|
|
From: sin-ack <sin-ack@protonmail.com>
|
|
Date: Thu, 30 Jan 2025 22:44:34 +0000
|
|
Subject: [PATCH] build: Fix bzip2 system dependency name
|
|
|
|
Signed-off-by: sin-ack <sin-ack@protonmail.com>
|
|
---
|
|
src/build/SharedDeps.zig | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/build/SharedDeps.zig b/src/build/SharedDeps.zig
|
|
index 9276c9914..654f5f96f 100644
|
|
--- a/src/build/SharedDeps.zig
|
|
+++ b/src/build/SharedDeps.zig
|
|
@@ -149,7 +149,7 @@ pub fn add(
|
|
);
|
|
|
|
if (b.systemIntegrationOption("freetype", .{})) {
|
|
- step.linkSystemLibrary2("bzip2", dynamic_link_opts);
|
|
+ step.linkSystemLibrary2("bz2", dynamic_link_opts);
|
|
step.linkSystemLibrary2("freetype2", dynamic_link_opts);
|
|
} else {
|
|
step.linkLibrary(freetype_dep.artifact("freetype"));
|
|
--
|
|
2.52.0
|
|
|