mirror of
https://github.com/ziglang/zig.git
synced 2025-12-24 07:03:11 +00:00
fix incorrect dylib filename pattern in the previous commit
This commit is contained in:
parent
870af49074
commit
2a893efae1
@ -120,7 +120,7 @@ pub fn binNameAlloc(allocator: *std.mem.Allocator, options: BinNameOptions) erro
|
||||
}),
|
||||
.Dynamic => {
|
||||
if (options.version) |ver| {
|
||||
return std.fmt.allocPrint(allocator, "{s}{s}.dylib.{d}.{d}.{d}", .{
|
||||
return std.fmt.allocPrint(allocator, "{s}{s}.{d}.{d}.{d}.dylib", .{
|
||||
target.libPrefix(), root_name, ver.major, ver.minor, ver.patch,
|
||||
});
|
||||
} else {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user