fix refactoring on linux
This commit is contained in:
parent
93c149c577
commit
c43fc735c3
2 changed files with 7 additions and 7 deletions
|
@ -327,7 +327,7 @@ static void ExtractData(char* extractor_tool, char *const extractor_args[], char
|
||||||
std::vector<std::wstring> argv = {L"-i", std::filesystem::path(datafile).wstring()};
|
std::vector<std::wstring> argv = {L"-i", std::filesystem::path(datafile).wstring()};
|
||||||
#else
|
#else
|
||||||
const char *file = "innoextract";
|
const char *file = "innoextract";
|
||||||
char *const argv[] = {"-i", datafile.c_str(), NULL};
|
char *argv[] = {"-i", (char*)datafile.c_str(), NULL};
|
||||||
#endif
|
#endif
|
||||||
if (runCommand(file, argv) == 0) {
|
if (runCommand(file, argv) == 0) {
|
||||||
// innoextract exists and this exe file is an innosetup file
|
// innoextract exists and this exe file is an innosetup file
|
||||||
|
@ -503,7 +503,7 @@ static void ExtractData(char* extractor_tool, char *const extractor_args[], char
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
strcat(cmdbuf, " ");
|
strcat(cmdbuf, " ");
|
||||||
strcat(earg);
|
strcat(cmdbuf, earg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
strcat(cmdbuf, " " QUOTE);
|
strcat(cmdbuf, " " QUOTE);
|
||||||
|
@ -645,8 +645,6 @@ int main(int argc, char * argv[]) {
|
||||||
sprintf(stratagus_bin, "%s\\stratagus.exe", stratagus_path);
|
sprintf(stratagus_bin, "%s\\stratagus.exe", stratagus_path);
|
||||||
}
|
}
|
||||||
|
|
||||||
char *const extractor_args[] = EXTRACTOR_ARGS;
|
|
||||||
|
|
||||||
#ifdef DATA_PATH
|
#ifdef DATA_PATH
|
||||||
// usually this isn't defined for windows builds. if it is, use it
|
// usually this isn't defined for windows builds. if it is, use it
|
||||||
strcpy(data_path, DATA_PATH);
|
strcpy(data_path, DATA_PATH);
|
||||||
|
@ -657,6 +655,8 @@ int main(int argc, char * argv[]) {
|
||||||
strcpy(stratagus_bin, STRATAGUS_BIN);
|
strcpy(stratagus_bin, STRATAGUS_BIN);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
char *const extractor_args[] = EXTRACTOR_ARGS;
|
||||||
|
|
||||||
if (argc > 1) {
|
if (argc > 1) {
|
||||||
if (!strcmp(argv[1], "--extract")) {
|
if (!strcmp(argv[1], "--extract")) {
|
||||||
// Force extraction and exit
|
// Force extraction and exit
|
||||||
|
|
|
@ -271,7 +271,7 @@ int runCommand(std::wstring& file, std::vector<std::wstring> argv, bool echo = f
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
|
|
||||||
int runCommand(const char *file, char *const argv[], bool echo = false, std::string *outputCommandline = NULL) {) {
|
int runCommand(const char *file, char *const argv[], bool echo = false, std::string *outputCommandline = NULL) {
|
||||||
pid_t pid = fork();
|
pid_t pid = fork();
|
||||||
|
|
||||||
if (echo || outputCommandline) {
|
if (echo || outputCommandline) {
|
||||||
|
@ -280,9 +280,9 @@ int runCommand(const char *file, char *const argv[], bool echo = false, std::str
|
||||||
if (argv[i] == NULL) {
|
if (argv[i] == NULL) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
commandline += " ";
|
||||||
|
commandline += argv[i];
|
||||||
}
|
}
|
||||||
commandline += " ";
|
|
||||||
commandline += argv[i];
|
|
||||||
if (echo) {
|
if (echo) {
|
||||||
std::cout << commandline << std::endl;
|
std::cout << commandline << std::endl;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue