From e89ef63b041874a1a6fcb8f03a2922a2a1322329 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Sat, 19 Nov 2005 21:07:25 +0000 Subject: [PATCH] Create parent directory before creating the definition file svn path=/trunk/; revision=19351 --- reactos/tools/rbuild/backend/mingw/modulehandler.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp index d32e6f39667..a959456cd40 100644 --- a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp +++ b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp @@ -1081,9 +1081,10 @@ MingwModuleHandler::GenerateWinebuildCommands ( CLEAN_FILE(stub_file) fprintf ( fMakefile, - "%s: %s $(WINEBUILD_TARGET)\n", + "%s: %s $(WINEBUILD_TARGET) | %s\n", def_file.c_str (), - dependencies.c_str () ); + dependencies.c_str (), + GetDirectory ( def_file ).c_str () ); fprintf ( fMakefile, "\t$(ECHO_WINEBLD)\n" ); fprintf ( fMakefile, "\t%s -o %s --def -E %s\n", -- 2.17.1