From 582402d1b956d09019d4f6a5ac2b1212cf05a86d Mon Sep 17 00:00:00 2001 From: cheatfate Date: Fri, 25 Sep 2020 11:05:38 +0300 Subject: [PATCH] Fix mkdir on Windows. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 235439e0b..a81edf342 100644 --- a/Makefile +++ b/Makefile @@ -107,6 +107,9 @@ ifeq ($(OS), Windows_NT) # 32-bit Windows is not supported by libbacktrace/libunwind USE_LIBBACKTRACE := 0 endif + MKDIR_COMMAND := mkdir -p +else + MKDIR_COMMAND := mkdir -m 0750 -p endif DEPOSITS_DELAY := 0