Search
j0ke.net Open Build Service
>
Projects
>
devel
:
subversion
>
cvs2svn
> cvs2svn.install-prefix.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File cvs2svn.install-prefix.patch of Package cvs2svn
According to bug #149809, prefix must be /usr/local --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: cvs2svn-1.5.x/Makefile =================================================================== --- cvs2svn-1.5.x.orig/Makefile +++ cvs2svn-1.5.x/Makefile @@ -18,8 +18,8 @@ install: ${PYTHON} ./setup.py install ; \ ;; \ *) \ - echo ${PYTHON} ./setup.py install --root=${DESTDIR} ; \ - ${PYTHON} ./setup.py install --root=${DESTDIR} ; \ + echo ${PYTHON} ./setup.py install --root=${DESTDIR} --prefix=/usr ; \ + ${PYTHON} ./setup.py install --root=${DESTDIR} --prefix=/usr ; \ ;; \ esac