On Fri, Jul 27, 2007 at 12:47:13PM +0200, Stefan Sperling wrote:
> On Thu, Jul 26, 2007 at 01:23:16PM -0700, gary (guangyuan) sun wrote:
> > Hi,
> >
> > I would like install latest subversion to my user dir
> > (Red Hat Linux). For avoiding conflect,
> > I want to change command names from svn, svnadmin, and
> > svnserve to gsvn, gsvnadmin, and gsvnserve.
> > How can I modify the source and recompile my client?
>
> I usually just override my PATH when needed.
>
> Compile like this:
>
> ./configure --prefix=$HOME/svn
> make && make install
>
> Of course the prefix can be anything you like,
> just not /usr because that would overwrite your system
> svn installation.
>
> When you need the current binaries do this:
>
> export PATH=$HOME/svn/bin:$PATH
Or, more comfortable: alias gsvn='$HOME/svn/bin/svn'
Then gsvn is different from svn.
Rainer
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Jul 27 18:57:00 2007