aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-12-17 06:35:22 +0100
committerAlex Rønne Petersen <alex@alexrp.com>2024-12-22 23:39:45 +0100
commit1f5315e774684fb0f4a945f779a89d021588bba7 (patch)
tree7b8b8c4fcee7a02332c3f4b8c1ebc436fc2bf4d2
parent9dea0459c1a08cc11cbd79fd777ae8e738f499a0 (diff)
downloadzig-1f5315e774684fb0f4a945f779a89d021588bba7.tar.gz
zig-1f5315e774684fb0f4a945f779a89d021588bba7.zip
fetch_them_macos_headers: Fix some file names.
-rw-r--r--tools/fetch_them_macos_headers.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/fetch_them_macos_headers.zig b/tools/fetch_them_macos_headers.zig
index d825d79d0a..f436990072 100644
--- a/tools/fetch_them_macos_headers.zig
+++ b/tools/fetch_them_macos_headers.zig
@@ -315,8 +315,8 @@ fn fetchTarget(
ver: Version,
tmp: std.testing.TmpDir,
) !void {
- const tmp_filename = "headers";
- const headers_list_filename = "headers.o.d";
+ const tmp_filename = "macos-headers";
+ const headers_list_filename = "macos-headers.o.d";
const tmp_path = try tmp.dir.realpathAlloc(arena, ".");
const tmp_file_path = try fs.path.join(arena, &[_][]const u8{ tmp_path, tmp_filename });
const headers_list_path = try fs.path.join(arena, &[_][]const u8{ tmp_path, headers_list_filename });