Thanks, BlueWall, for a patch that:

Binary distributions of OpenSim are not able to get the version info because they lack the ../.svn/entries file. This file exists in the ./bin./svn directory, which would be in a binary distribution. The included patch changes the path from ../.svn/entries to .svn/entries, which allows the version information to be show in "help/about"
0.6.0-stable
Dahlia Trimble 2008-08-14 10:23:00 +00:00
parent 1bf60fa1ac
commit 230c80be54
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ namespace OpenSim.Framework.Servers
// FIXME: Making an assumption about the directory we're currently in - we do this all over the place
// elsewhere as well
string svnRevisionFileName = "svn_revision";
string svnFileName = "../.svn/entries";
string svnFileName = ".svn/entries";
string inputLine;
int strcmp;