mirror of
https://github.com/ziglang/zig.git
synced 2026-01-05 21:13:24 +00:00
build: fix incorrect name in InstallArtifactStep
Rename the full_pdb_path variable to full_h_path, in the InstallArtifactStep.make method.
This commit is contained in:
parent
55e879d2ed
commit
05c7f7abf1
@ -81,8 +81,8 @@ fn make(step: *Step) !void {
|
||||
try builder.updateFile(self.artifact.getOutputPdbSource().getPath(builder), full_pdb_path);
|
||||
}
|
||||
if (self.h_dir) |h_dir| {
|
||||
const full_pdb_path = builder.getInstallPath(h_dir, self.artifact.out_h_filename);
|
||||
try builder.updateFile(self.artifact.getOutputHSource().getPath(builder), full_pdb_path);
|
||||
const full_h_path = builder.getInstallPath(h_dir, self.artifact.out_h_filename);
|
||||
try builder.updateFile(self.artifact.getOutputHSource().getPath(builder), full_h_path);
|
||||
}
|
||||
self.artifact.installed_path = full_dest_path;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user