Skip to content

Commit b723cb0

Browse files
committed
std.Build.CompileStep.installConfigHeader fix missing dependency
This function was missing a line to add a step dependency from the InstallFileStep to the ConfigHeaderStep.
1 parent 4fcb883 commit b723cb0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/std/Build/CompileStep.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,7 @@ pub fn installConfigHeader(
462462
options.install_dir,
463463
dest_rel_path,
464464
);
465+
install_file.step.dependOn(&config_header.step);
465466
cs.builder.getInstallStep().dependOn(&install_file.step);
466467
cs.installed_headers.append(&install_file.step) catch @panic("OOM");
467468
}

0 commit comments

Comments
 (0)