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 /lib/std/Build/Step/Compile.zig | |
| parent | 7322aa118376a635ab077ca833dd152639953337 (diff) | |
| download | zig-bbda053f9e309128ee4b2eb1a5b886aeb30fcabf.tar.gz zig-bbda053f9e309128ee4b2eb1a5b886aeb30fcabf.zip | |
Build: make `InstallDirStep` use a `FileSource`
Closes #16187
Diffstat (limited to 'lib/std/Build/Step/Compile.zig')
| -rw-r--r-- | lib/std/Build/Step/Compile.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/Build/Step/Compile.zig b/lib/std/Build/Step/Compile.zig index 58973d08d0..88fdb2ecb0 100644 --- a/lib/std/Build/Step/Compile.zig +++ b/lib/std/Build/Step/Compile.zig @@ -564,7 +564,7 @@ pub fn installHeadersDirectory( dest_rel_path: []const u8, ) void { return installHeadersDirectoryOptions(a, .{ - .source_dir = src_dir_path, + .source_dir = .{ .path = src_dir_path }, .install_dir = .header, .install_subdir = dest_rel_path, }); |
