Files
MINGW-packages/mingw-w64-remake-git/make-linebuf-mingw.patch
2015-11-26 23:26:51 +00:00

15 lines
396 B
Diff

--- make.orig/main.c
+++ make/main.c
@@ -971,8 +971,11 @@
#endif
+/* setlocale interferes with line buffering if using parallel make on MinGW */
+#ifndef __MINGW32__
/* Set up gettext/internationalization support. */
setlocale (LC_ALL, "");
+#endif
/* The cast to void shuts up compiler warnings on systems that
disable NLS. */
(void)bindtextdomain (PACKAGE, LOCALEDIR);