Archived
1
0
This commit is contained in:
Jeff Becker 2018-05-06 10:23:41 -04:00
parent 3b8fd51e53
commit e78bd50ef1
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -37,7 +37,7 @@ int ExecFrontend::Exec(std::deque<std::string> args)
}
else
{
int r = execvpe(m_exec.c_str(), (char *const *)cargs, m_Environ);
int r = execve(m_exec.c_str(), (char *const *)cargs, m_Environ);
if (r == -1)
{
std::cout << strerror(errno) << std::endl;