fixed data path in porting.cpp for normal linux builds to get data from /binary/dir/../share/APPNAME
parent
56918c0ca4
commit
023876dafb
|
@ -143,8 +143,16 @@ void initializePaths()
|
|||
#elif defined(linux)
|
||||
#include <unistd.h>
|
||||
|
||||
char buf[BUFSIZ];
|
||||
// Get path to executable
|
||||
readlink("/proc/self/exe", buf, BUFSIZ);
|
||||
|
||||
pathRemoveFile(buf, '/');
|
||||
|
||||
path_data = std::string(buf) + "/../share/" + APPNAME;
|
||||
//path_data = std::string(INSTALL_PREFIX) + "/share/" + APPNAME;
|
||||
|
||||
path_userdata = std::string(getenv("HOME")) + "/." + APPNAME;
|
||||
path_data = std::string(INSTALL_PREFIX) + "/share/" + APPNAME;
|
||||
|
||||
/*
|
||||
OS X
|
||||
|
|
Loading…
Reference in New Issue