]> git.saurik.com Git - wxWidgets.git/blobdiff - src/unix/utilsunx.cpp
removed 2.6.1 symbols from 2.6.2 tag
[wxWidgets.git] / src / unix / utilsunx.cpp
index 33caa09fb5690784f7c7d93fba68fc1cd7e3d9c9..4d670f4ea0ef2ddfac9726f33f3c006b6279eb2e 100644 (file)
@@ -316,10 +316,10 @@ long wxExecute( const wxString& command, int flags, wxProcess *process )
     long lRc;
 #if defined(__DARWIN__)
     // wxMacExecute only executes app bundles.
-    // It returns -1 if the target is not an app bundle, thus falling through
-    // to the regular wxExecute for non app bundles.
+    // It returns an error code if the target is not an app bundle, thus falling
+    // through to the regular wxExecute for non app bundles.
     lRc = wxMacExecute(argv, flags, process);
-    if( lRc != -1)
+    if( lRc != ((flags & wxEXEC_SYNC) ? -1 : 0))
         return lRc;
 #endif