2019-11-22 16:55:58 +01:00
|
|
|
From d470f1069744c3e6ef2e928217c1a4a23a87efa2 Mon Sep 17 00:00:00 2001
|
|
|
|
From: zbao <fishbaozi@gmail.com>
|
|
|
|
Date: Sat, 26 Sep 2015 06:20:53 -0400
|
|
|
|
Subject: [PATCH] util/kconfig: Set parameter of mkdir to only one for mingw.
|
|
|
|
|
|
|
|
The second parameter is to set file permissions for the directory, which
|
|
|
|
is not needed in mingw.
|
|
|
|
|
|
|
|
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
|
|
|
|
---
|
|
|
|
util/kconfig/confdata.c | 4 ++++
|
|
|
|
1 file changed, 4 insertions(+)
|
|
|
|
|
|
|
|
Index: kconfig/confdata.c
|
|
|
|
===================================================================
|
|
|
|
--- kconfig.orig/confdata.c
|
|
|
|
+++ kconfig/confdata.c
|
2022-10-28 01:00:26 +02:00
|
|
|
@@ -155,6 +155,10 @@ static void conf_message(const char *fmt
|
|
|
|
static const char *conf_filename;
|
|
|
|
static int conf_lineno, conf_warnings;
|
2019-11-22 16:55:58 +01:00
|
|
|
|
|
|
|
+#ifdef __MINGW32__
|
|
|
|
+#define mkdir(_n,_p) mkdir((_n))
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
static void conf_warning(const char *fmt, ...)
|
2022-10-28 01:00:26 +02:00
|
|
|
{
|
|
|
|
va_list ap;
|