diff options
author | Dahlia Trimble | 2008-08-14 10:23:00 +0000 |
---|---|---|
committer | Dahlia Trimble | 2008-08-14 10:23:00 +0000 |
commit | 230c80be54a46b28670acbea483ca312285c2f00 (patch) | |
tree | 528d0995c125e0e6d491ca9cebfd1ddf70f42b57 /OpenSim | |
parent | updated some prim parameters to project maintained versions (diff) | |
download | opensim-SC_OLD-230c80be54a46b28670acbea483ca312285c2f00.zip opensim-SC_OLD-230c80be54a46b28670acbea483ca312285c2f00.tar.gz opensim-SC_OLD-230c80be54a46b28670acbea483ca312285c2f00.tar.bz2 opensim-SC_OLD-230c80be54a46b28670acbea483ca312285c2f00.tar.xz |
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"
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Servers/BaseOpenSimServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
254 | // FIXME: Making an assumption about the directory we're currently in - we do this all over the place | 254 | // FIXME: Making an assumption about the directory we're currently in - we do this all over the place |
255 | // elsewhere as well | 255 | // elsewhere as well |
256 | string svnRevisionFileName = "svn_revision"; | 256 | string svnRevisionFileName = "svn_revision"; |
257 | string svnFileName = "../.svn/entries"; | 257 | string svnFileName = ".svn/entries"; |
258 | string inputLine; | 258 | string inputLine; |
259 | int strcmp; | 259 | int strcmp; |
260 | 260 | ||