Fix build error due to DEBUGFILE

master
Perttu Ahola 2012-06-16 21:36:54 +03:00
parent e6b86fa304
commit 9e21204f8b
1 changed files with 2 additions and 1 deletions

View File

@ -877,8 +877,9 @@ int main(int argc, char *argv[])
init_gettext((porting::path_share+DIR_DELIM+".."+DIR_DELIM+"locale").c_str());
// Initialize debug streams
#define DEBUGFILE "debug.txt"
#ifdef RUN_IN_PLACE
std::string logfile = "debug.txt";
std::string logfile = DEBUGFILE;
#else
std::string logfile = porting::path_user+DIR_DELIM+DEBUGFILE;
#endif