@@ -43,9 +43,6 @@ stdio: StdIo,
4343/// It should be only set using `setStdIn`.
4444stdin : StdIn ,
4545
46- /// Deprecated: use `addFileInput`
47- extra_file_dependencies : []const []const u8 ,
48-
4946/// Additional input files that, when modified, indicate that the Run step
5047/// should be re-executed.
5148/// If the Run step is determined to have side-effects, the Run step is always
@@ -178,7 +175,6 @@ pub fn create(owner: *std.Build, name: []const u8) *Run {
178175 .disable_zig_progress = false ,
179176 .stdio = .infer_from_args ,
180177 .stdin = .none ,
181- .extra_file_dependencies = &.{},
182178 .file_inputs = .{},
183179 .rename_step_with_output_arg = true ,
184180 .skip_foreign_checks = false ,
@@ -364,16 +360,10 @@ pub fn addPrefixedOutputDirectoryArg(
364360 return .{ .generated = .{ .file = & output .generated_file } };
365361}
366362
367- /// deprecated: use `addDirectoryArg`
368- pub const addDirectorySourceArg = addDirectoryArg ;
369-
370363pub fn addDirectoryArg (run : * Run , directory_source : std.Build.LazyPath ) void {
371364 run .addPrefixedDirectoryArg ("" , directory_source );
372365}
373366
374- // deprecated: use `addPrefixedDirectoryArg`
375- pub const addPrefixedDirectorySourceArg = addPrefixedDirectoryArg ;
376-
377367pub fn addPrefixedDirectoryArg (run : * Run , prefix : []const u8 , directory_source : std.Build.LazyPath ) void {
378368 const b = run .step .owner ;
379369
@@ -698,9 +688,6 @@ fn make(step: *Step, options: Step.MakeOptions) !void {
698688
699689 hashStdIo (& man .hash , run .stdio );
700690
701- for (run .extra_file_dependencies ) | file_path | {
702- _ = try man .addFile (b .pathFromRoot (file_path ), null );
703- }
704691 for (run .file_inputs .items ) | lazy_path | {
705692 _ = try man .addFile (lazy_path .getPath2 (b , step ), null );
706693 }
0 commit comments