File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ pub fn build(b: *std.Build) void {
129
129
130
130
const mkfs_fat = b .addExecutable (.{
131
131
.name = "mkfs.fat" ,
132
- .target = b .host ,
132
+ .target = b .graph . host ,
133
133
.optimize = .ReleaseSafe ,
134
134
.root_source_file = b .path ("src/mkfs.fat.zig" ),
135
135
});
@@ -524,9 +524,9 @@ pub const InitializeDiskStep = struct {
524
524
}
525
525
}
526
526
527
- fn make (step : * std.Build.Step , progress : std.Progress.Node ) ! void {
527
+ fn make (step : * std.Build.Step , options : std.Build.Step.MakeOptions ) ! void {
528
528
const b = step .owner ;
529
- _ = progress ;
529
+ _ = options ;
530
530
531
531
const ids : * InitializeDiskStep = @fieldParentPtr ("step" , step );
532
532
@@ -629,7 +629,7 @@ pub const Content = union(enum) {
629
629
dir .* = try allocator .dupe (u8 , dir .* );
630
630
},
631
631
.copy_dir , .copy_file = > | * cp | {
632
- const cp_new = .{
632
+ const cp_new : FileSystem.Copy = .{
633
633
.destination = try allocator .dupe (u8 , cp .destination ),
634
634
.source = cp .source .dupe (b ),
635
635
};
Original file line number Diff line number Diff line change 3
3
.version = "0.1.0" ,
4
4
.dependencies = .{
5
5
.zfat = .{
6
- .url = "https://github.com/ZigEmbeddedGroup/zfat/archive/68dbbe19258b174fe4f374a91b4cc939019d9fe7 .tar.gz" ,
7
- .hash = "1220963601b9bc8dacc422d098368567e5c7b84d21f9ae73067fe3eb9c566aea02fd " ,
6
+ .url = "https://github.com/ZigEmbeddedGroup/zfat/archive/3ce06d43a4e04d387034dcae2f486b050701f321 .tar.gz" ,
7
+ .hash = "12205d874e8c9fd08d93c09ccbfddb045809afcc28e232b36b5abe3d288278ce458f " ,
8
8
},
9
9
},
10
10
.paths = .{
You can’t perform that action at this time.
0 commit comments