diff --git a/lib/std/Build/Step/InstallArtifact.zig b/lib/std/Build/Step/InstallArtifact.zig index b662854746..f3c9ca3bef 100644 --- a/lib/std/Build/Step/InstallArtifact.zig +++ b/lib/std/Build/Step/InstallArtifact.zig @@ -77,10 +77,12 @@ pub fn create(owner: *std.Build, artifact: *Step.Compile, options: Options) *Ins }, .h_dir = switch (options.h_dir) { .disabled => null, - .default => switch (artifact.kind) { - .lib => .header, - else => null, - }, + // https://github.com/ziglang/zig/issues/9698 + .default => null, + //.default => switch (artifact.kind) { + // .lib => .header, + // else => null, + //}, .override => |o| o, }, .implib_dir = switch (options.implib_dir) {