From 230c80be54a46b28670acbea483ca312285c2f00 Mon Sep 17 00:00:00 2001 From: Dahlia Trimble Date: Thu, 14 Aug 2008 10:23:00 +0000 Subject: 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" --- OpenSim/Framework/Servers/BaseOpenSimServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Framework/Servers/BaseOpenSimServer.cs') diff --git a/OpenSim/Framework/Servers/BaseOpenSimServer.cs b/OpenSim/Framework/Servers/BaseOpenSimServer.cs index 4634bf0..65c989d 100644 --- a/OpenSim/Framework/Servers/BaseOpenSimServer.cs +++ b/OpenSim/Framework/Servers/BaseOpenSimServer.cs @@ -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; -- cgit v1.1