fix: correct libarchive library name

This commit is contained in:
LordMZTE 2022-12-06 21:26:55 +01:00
parent b68ecfdaa7
commit 22c39a6712
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6

View file

@ -47,6 +47,6 @@ fn addDeps(exe: *std.build.LibExeObjStep) void {
// TODO: switch to some zig library, once we get one that supports progress output.
exe.linkSystemLibrary("curl");
// used to unpack downloaded zig packages
exe.linkSystemLibrary("archive");
exe.linkSystemLibrary("libarchive");
}