]> git.lyx.org Git - lyx.git/blobdiff - src/support/systemcall.C
make "make distcheck" work
[lyx.git] / src / support / systemcall.C
index b5688913f9b6cd0063f990e837d9418919a114af..b879ba4ae5891c80bc3b5a1ebdb9f5bf809de199 100644 (file)
 
 #include <config.h>
 
-#include "systemcall.h"
-#include "os.h"
+#include "support/systemcall.h"
+#include "support/os.h"
 
 #include <cstdlib>
 
+using std::string;
+
 #ifndef CXX_GLOBAL_CSTD
 using std::system;
 #endif
@@ -31,10 +33,13 @@ int Systemcall::startscript(Starttype how, string const & what)
        string command = what;
 
        if (how == DontWait) {
-               if (os::shell() == os::UNIX) {
+               switch (os::shell()) {
+               case os::UNIX:
                        command += " &";
-               } else {
-                       command = "start /min/n " + command;
+                       break;
+               case os::CMD_EXE:
+                       command = "start /min " + command;
+                       break;
                }
        }