From 93ead5c9eb13748987d5810dc24fbbccc5c641fd Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sun, 11 Jul 2021 12:41:17 -0700 Subject: [PATCH] glfw: remove symlinks from SDKs (using them on windows is annoying) Signed-off-by: Stephen Gutekanst --- glfw/build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/build.zig b/glfw/build.zig index 5973a82c..ae94a4bf 100644 --- a/glfw/build.zig +++ b/glfw/build.zig @@ -228,7 +228,7 @@ fn getSdkRoot(allocator: *std.mem.Allocator, comptime name: []const u8) ![]const if (!try confirmAppleSDKAgreement()) @panic("cannot continue"); } try std.fs.cwd().makePath(app_data_dir); - const argv = &[_][]const u8{ "git", "clone", "-c", "core.symlinks=true", "https://github.com/hexops/" ++ name }; + const argv = &[_][]const u8{ "git", "clone", "https://github.com/hexops/" ++ name }; const child = try std.ChildProcess.init(argv, allocator); child.cwd = app_data_dir; child.stdin = std.io.getStdOut();