diff options
| author | Ian Johnson <ian@ianjohnson.dev> | 2023-06-25 23:35:38 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-06-26 15:59:53 -0700 |
| commit | bbda053f9e309128ee4b2eb1a5b886aeb30fcabf (patch) | |
| tree | 9ad13aa9708562f57e67a09ba934d13fb6098ec6 /build.zig | |
| parent | 7322aa118376a635ab077ca833dd152639953337 (diff) | |
| download | zig-bbda053f9e309128ee4b2eb1a5b886aeb30fcabf.tar.gz zig-bbda053f9e309128ee4b2eb1a5b886aeb30fcabf.zip | |
Build: make `InstallDirStep` use a `FileSource`
Closes #16187
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -105,7 +105,7 @@ pub fn build(b: *std.Build) !void { if (!skip_install_lib_files) { b.installDirectory(InstallDirectoryOptions{ - .source_dir = "lib", + .source_dir = .{ .path = "lib" }, .install_dir = .lib, .install_subdir = "zig", .exclude_extensions = &[_][]const u8{ |
