about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/minimal-bootstrap/musl/always-flush.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/minimal-bootstrap/musl/always-flush.patch')
-rw-r--r--pkgs/os-specific/linux/minimal-bootstrap/musl/always-flush.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/pkgs/os-specific/linux/minimal-bootstrap/musl/always-flush.patch b/pkgs/os-specific/linux/minimal-bootstrap/musl/always-flush.patch
deleted file mode 100644
index cdeddf962d9d..000000000000
--- a/pkgs/os-specific/linux/minimal-bootstrap/musl/always-flush.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git src/env/__libc_start_main.c src/env/__libc_start_main.c
-index 8fbe526..9476c22 100644
---- src/env/__libc_start_main.c
-+++ src/env/__libc_start_main.c
-@@ -91,6 +91,7 @@ static int libc_start_main_stage2(int (*main)(int,char **,char **), int argc, ch
- 	__libc_start_init();
- 
- 	/* Pass control to the application */
-+	setbuf(stdout, NULL);
- 	exit(main(argc, argv, envp));
- 	return 0;
- }