You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Robert Sesek <rs...@iris-studios.com> on 2006/09/16 04:46:05 UTC

Problems Installing SVN 1.4.0 on FreeBSD 6.1 (error code 71)

I just downloaded SVN 1.4 and tried to install it on my FreeBSD 6.1  
box. SVN built fine (using this command: ./configure --with-ssl -- 
with-apr=/usr/local/apache2/ --with-apr-util=/usr/local/apache2/ -- 
without-berkeley-db --without-swig). However, when I got to the "make  
install" step, I got this error:

/usr/bin/install -c .libs/svndumpfilter /usr/local/bin/svndumpfilter
cd subversion/svnlook ; /usr/local/bin/bash /root/serversetup/svn/ 
subversion-1.4.0/libtool --mode=install /usr/bin/install -c svnlook / 
usr/local/bin/svnlook
/usr/bin/install -c .libs/svnlook /usr/local/bin/svnlook
cd subversion/svnserve ; /usr/local/bin/bash /root/serversetup/svn/ 
subversion-1.4.0/libtool --mode=install /usr/bin/install -c svnserve / 
usr/local/bin/svnserve
/usr/bin/install -c .libs/svnserve /usr/local/bin/svnserve
cd subversion/svnsync ; /usr/local/bin/bash /root/serversetup/svn/ 
subversion-1.4.0/libtool --mode=install /usr/bin/install -c svnsync / 
usr/local/bin/svnsync
/usr/bin/install -c .libs/svnsync /usr/local/bin/svnsync
cd subversion/svnversion ; /usr/local/bin/bash /root/serversetup/svn/ 
subversion-1.4.0/libtool --mode=install /usr/bin/install -c  
svnversion /usr/local/bin/svnversion
/usr/bin/install -c .libs/svnversion /usr/local/bin/svnversion
/usr/bin/install -c -m 644 ./subversion/svn/svn.1 /usr/local/man/man1/ 
svn.1
/usr/bin/install -c -m 644 ./subversion/svnadmin/svnadmin.1 /usr/ 
local/man/man1/svnadmin.1
/usr/bin/install -c -m 644 ./subversion/svndumpfilter/svndumpfilter. 
1 /usr/local/man/man1/svndumpfilter.1
/usr/bin/install -c -m 644 ./subversion/svnlook/svnlook.1 /usr/local/ 
man/man1/svnlook.1
/usr/bin/install -c -m 644 ./subversion/svnserve/svnserve.8 /usr/ 
local/man/man8/svnserve.8
/usr/bin/install -c -m 644 ./subversion/svnserve/svnserve.conf.5 /usr/ 
local/man/man5/svnserve.conf.5
/usr/bin/install -c -m 644 subversion/svnversion/svnsync.1 /usr/local/ 
man/man1/svnsync.1
install: subversion/svnversion/svnsync.1: No such file or directory
*** Error code 71

Stop in /root/serversetup/svn/subversion-1.4.0.

I don't know what's causing this or how to fix it. Any advice? SVN  
1.3.2 installed fine.

Thanks,

Robert Sesek
Email: rsesek@iris-studios.com
www.iris-studios.com


Re: Problems Installing SVN 1.4.0 on FreeBSD 6.1 (error code 71)

Posted by "Alexey A. Ukhov" <uk...@medlib.tomsk.ru>.
Robert Sesek wrote:
> I just downloaded SVN 1.4 and tried to install it on my FreeBSD 6.1 
> box. SVN built fine (using this command: ./configure --with-ssl 
> --with-apr=/usr/local/apache2/ --with-apr-util=/usr/local/apache2/ 
> --without-berkeley-db --without-swig). However, when I got to the 
> "make install" step, I got this error:
Robert.
You are not right.
What a "bool shit" is it? :)

Just 3 simple steps.

1. Refresh your posts.
2. # cd /usr/ports/devel/subversion
3. # make install

That's all.

It perfectly works on FreeBSD 4.11, 5.5, 6.1 and I'm sure others.

Alexey A. Ukhov

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Problems Installing SVN 1.4.0 on FreeBSD 6.1 (error code 71)

Posted by Travis P <sv...@castle.fastmail.fm>.
On Sep 18, 2006, at 9:39 AM, Garrett Rooney wrote:

> On 9/17/06, Robert Sesek <rs...@iris-studios.com> wrote:
>>
>> I got it from ports but it didn't link correctly against  
>> something. However,
>> I did get the download tarball to install correctly by simply copying
>> subversion/svnsync/svnsync.1 to subversion/svnversion/svnsync.1  
>> which was
>> the only file it couldn't find. After I did that, make install ran  
>> perfectly
>> fine.
>
> FWIW, that was the result of an incorrect merge into the 1.4 release
> branch, and it's already been fixed.  It wasn't noticed before because
> it doesn't actually cause a failure on most systems.  FreeBSD appears
> to be the exception here.

FYI: FreeBSD isn't unique.  I had the same trouble (re: install  
looking for svnversion/svnsync.1) during the install on AIX (5.3).   
Copying the file into that location was my quick-fix as well.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Problems Installing SVN 1.4.0 on FreeBSD 6.1 (error code 71)

Posted by Garrett Rooney <ro...@electricjellyfish.net>.
On 9/17/06, Robert Sesek <rs...@iris-studios.com> wrote:
>
> I got it from ports but it didn't link correctly against something. However,
> I did get the download tarball to install correctly by simply copying
> subversion/svnsync/svnsync.1 to subversion/svnversion/svnsync.1 which was
> the only file it couldn't find. After I did that, make install ran perfectly
> fine.

FWIW, that was the result of an incorrect merge into the 1.4 release
branch, and it's already been fixed.  It wasn't noticed before because
it doesn't actually cause a failure on most systems.  FreeBSD appears
to be the exception here.

-garrett

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Problems Installing SVN 1.4.0 on FreeBSD 6.1 (error code 71)

Posted by Robert Sesek <rs...@iris-studios.com>.
I got it from ports but it didn't link correctly against something.  
However, I did get the download tarball to install correctly by  
simply copying subversion/svnsync/svnsync.1 to subversion/svnversion/ 
svnsync.1 which was the only file it couldn't find. After I did that,  
make install ran perfectly fine.

Thanks!

On Sep 17, 2006, at 10:02, Robert Gabaree wrote:

> I would try it via ports.  I installed SVN 1.4.0 on FreeBSD 6.1  
> perfectly from ports with no issues at all.
>
> On Sep 16, 2006, at 12:46 AM, Robert Sesek wrote:
>
>> I just downloaded SVN 1.4 and tried to install it on my FreeBSD  
>> 6.1 box. SVN built fine (using this command: ./configure --with- 
>> ssl --with-apr=/usr/local/apache2/ --with-apr-util=/usr/local/ 
>> apache2/ --without-berkeley-db --without-swig). However, when I  
>> got to the "make install" step, I got this error:
>>
>> /usr/bin/install -c .libs/svndumpfilter /usr/local/bin/svndumpfilter
>> cd subversion/svnlook ; /usr/local/bin/bash /root/serversetup/svn/ 
>> subversion-1.4.0/libtool --mode=install /usr/bin/install -c  
>> svnlook /usr/local/bin/svnlook
>> /usr/bin/install -c .libs/svnlook /usr/local/bin/svnlook
>> cd subversion/svnserve ; /usr/local/bin/bash /root/serversetup/svn/ 
>> subversion-1.4.0/libtool --mode=install /usr/bin/install -c  
>> svnserve /usr/local/bin/svnserve
>> /usr/bin/install -c .libs/svnserve /usr/local/bin/svnserve
>> cd subversion/svnsync ; /usr/local/bin/bash /root/serversetup/svn/ 
>> subversion-1.4.0/libtool --mode=install /usr/bin/install -c  
>> svnsync /usr/local/bin/svnsync
>> /usr/bin/install -c .libs/svnsync /usr/local/bin/svnsync
>> cd subversion/svnversion ; /usr/local/bin/bash /root/serversetup/ 
>> svn/subversion-1.4.0/libtool --mode=install /usr/bin/install -c  
>> svnversion /usr/local/bin/svnversion
>> /usr/bin/install -c .libs/svnversion /usr/local/bin/svnversion
>> /usr/bin/install -c -m 644 ./subversion/svn/svn.1 /usr/local/man/ 
>> man1/svn.1
>> /usr/bin/install -c -m 644 ./subversion/svnadmin/svnadmin.1 /usr/ 
>> local/man/man1/svnadmin.1
>> /usr/bin/install -c -m 644 ./subversion/svndumpfilter/ 
>> svndumpfilter.1 /usr/local/man/man1/svndumpfilter.1
>> /usr/bin/install -c -m 644 ./subversion/svnlook/svnlook.1 /usr/ 
>> local/man/man1/svnlook.1
>> /usr/bin/install -c -m 644 ./subversion/svnserve/svnserve.8 /usr/ 
>> local/man/man8/svnserve.8
>> /usr/bin/install -c -m 644 ./subversion/svnserve/svnserve.conf.5 / 
>> usr/local/man/man5/svnserve.conf.5
>> /usr/bin/install -c -m 644 subversion/svnversion/svnsync.1 /usr/ 
>> local/man/man1/svnsync.1
>> install: subversion/svnversion/svnsync.1: No such file or directory
>> *** Error code 71
>>
>> Stop in /root/serversetup/svn/subversion-1.4.0.
>>
>> I don't know what's causing this or how to fix it. Any advice? SVN  
>> 1.3.2 installed fine.
>>
>> Thanks,
>>
>> Robert Sesek
>> Email: rsesek@iris-studios.com
>> www.iris-studios.com
>>
>

Robert Sesek
Email: rsesek@bluestatic.com
www.bluestatic.org