From ef75ce9035389b6639a8d223253aca058e3fea40 Mon Sep 17 00:00:00 2001 From: RigoLigoRLC Date: Thu, 26 Nov 2020 01:44:55 +0800 Subject: [PATCH] Fix: refusal of creation of non-existent directory tree on plotting Fixed https://gitlab.com/kicad/code/kicad/-/issues/6394 wxWidgets uses wxFileName::Mkdir to create a directory tree like `mkdir -p`. --- common/common.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/common.cpp b/common/common.cpp index b159403122..81de209180 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -307,7 +307,9 @@ bool EnsureFileDirectoryExists( wxFileName* aTargetFullFileName, if( !wxFileName::DirExists( outputPath ) ) { - if( wxMkdir( outputPath ) ) + // Make every directory provided when the provided path doesn't exist + // Fixes GitLab Issue #6394 + if( wxFileName::Mkdir( outputPath, wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL ) ) { if( aReporter ) {