diff options
author | 2022-11-12 01:51:51 +0100 | |
---|---|---|
committer | 2022-11-12 01:51:51 +0100 | |
commit | 8029ee65937343045c1091f0022521986444c36f (patch) | |
tree | 3170fa24e8c6f893819b7b6da001e9222a076c02 | |
parent | e1d19a7ee21ea2aee0cef5ac0aac900222b93e02 (diff) | |
download | bun-8029ee65937343045c1091f0022521986444c36f.tar.gz bun-8029ee65937343045c1091f0022521986444c36f.tar.zst bun-8029ee65937343045c1091f0022521986444c36f.zip |
Fix: addLibPath -> addLibraryPath
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -596,7 +596,7 @@ pub fn linkObjectFiles(b: *std.build.Builder, obj: *std.build.LibExeObjStep, tar var deps_dir = std.fs.cwd().openIterableDir(deps_path, .{}) catch continue; var iterator = deps_dir.iterate(); obj.addIncludePath(deps_path); - obj.addLibPath(deps_path); + obj.addLibraryPath(deps_path); while (iterator.next() catch null) |entr| { const entry: std.fs.Dir.Entry = entr; |