Use execv instead of execve, because environ symbol breaks compilation with -Wl,--no-undefined flag under FreeBSD via Waf.
This commit is contained in:
parent
f350683e83
commit
f36d1f5621
1 changed files with 1 additions and 2 deletions
|
@ -29,7 +29,6 @@ GNU General Public License for more details.
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
|
|
||||||
#ifndef __ANDROID__
|
#ifndef __ANDROID__
|
||||||
extern char **environ;
|
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -299,7 +298,7 @@ void Sys_ShellExecute( const char *path, const char *parms, int shouldExit )
|
||||||
pid_t id = fork( );
|
pid_t id = fork( );
|
||||||
if( id == 0 )
|
if( id == 0 )
|
||||||
{
|
{
|
||||||
execve( xdgOpen, (char **)argv, environ );
|
execv( xdgOpen, (char **)argv );
|
||||||
fprintf( stderr, "error opening %s %s", xdgOpen, path );
|
fprintf( stderr, "error opening %s %s", xdgOpen, path );
|
||||||
_exit( 1 );
|
_exit( 1 );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue