mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-13 23:36:09 +03:00
don't error when gtk4 could not be found via pkg-config (#4546)
running `zig build --help` was crashing for some people, I narrowed it down to gtk4 not being installed however that shouldn't make the help message not nor should it block glfw builds
This commit is contained in:
@ -143,7 +143,7 @@ pub fn build(b: *std.Build) !void {
|
||||
break :x11 false;
|
||||
}
|
||||
std.log.warn("pkg-config: {s} with code {d}", .{ @tagName(term), code });
|
||||
return error.Unexpected;
|
||||
break :x11 false;
|
||||
},
|
||||
inline else => |code| {
|
||||
std.log.warn("pkg-config: {s} with code {d}", .{ @tagName(term), code });
|
||||
|
Reference in New Issue
Block a user