From 04d13e205420153230f60ee9124adc314f49f827 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 11 Oct 2013 15:31:36 +0000 Subject: [PATCH] Fix incorrect wxExecute() use in wxrc. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74987 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/wxrc/wxrc.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/wxrc/wxrc.cpp b/utils/wxrc/wxrc.cpp index f5158fd2ab..f7a5d9a14f 100644 --- a/utils/wxrc/wxrc.cpp +++ b/utils/wxrc/wxrc.cpp @@ -559,7 +559,8 @@ void XmlResApp::MakePackageZIP(const wxArrayString& flist) wxSetWorkingDirectory(parOutputPath); int execres = wxExecute(wxT("zip -9 -j ") + wxString(flagVerbose ? wxT("\"") : wxT("-q \"")) + - parOutput + wxT("\" ") + files, true); + parOutput + wxT("\" ") + files, + wxEXEC_BLOCK); wxSetWorkingDirectory(cwd); if (execres == -1) {