From: curt Date: Thu, 4 Apr 2002 05:03:18 +0000 (+0000) Subject: Make the base package check [failed] message a bit more informative about X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fd8d48d011d66a90313af57d6b6edbc0ae268c6d;p=flightgear.git Make the base package check [failed] message a bit more informative about where it was looking. --- diff --git a/src/Main/main.cxx b/src/Main/main.cxx index 6b7e180ab..c8fc2d538 100644 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -1383,7 +1383,8 @@ int mainLoop( int argc, char **argv ) { fgUsage(); SG_LOG( SG_GENERAL, SG_ALERT, "Base package check failed ... " - << "Found version " << base_version ); + << "Found version " << base_version << " at: " + << globals->get_fg_root() ); SG_LOG( SG_GENERAL, SG_ALERT, "Please upgrade to version 0.7.9" ); exit(-1); }