I downloaded complete CVS wine repository, but the instructions on how to use CVSUP to mantain it up to date are not complete (for me at least !). Can anybody explain me how to do it ?
Thanx in advance
Max
Max wrote:
I downloaded complete CVS wine repository, but the instructions on how to use CVSUP to mantain it up to date are not complete (for me at least !). Can anybody explain me how to do it ?
Thanx in advance
Max
When I update from CVS I use
cvs update -PAd ./configure make depend && make su make install
The configure is optional if no makefiles have been changed.
Tony Lambregts
On July 26, 2002 05:36 pm, Max wrote:
I downloaded complete CVS wine repository, but the instructions on how to use CVSUP to mantain it up to date are not complete (for me at least !). Can anybody explain me how to do it ?
Here is my setup:
[dimi@dimi dimi]$ ls -ld /var/cvsup drwxrwxrwx 4 root root 4096 May 21 03:25 /var/cvsup [dimi@dimi dimi]$ ls -ld /var/cvs drwxr-xr-x 3 root root 4096 May 21 03:29 /var/cvs [dimi@dimi dimi]$ ls -l /var/cvs total 4 drwxr-xr-x 2 root root 4096 May 21 03:29 CVSROOT lrwxrwxrwx 1 root root 14 May 21 03:28 wine -> ../cvsup/wine/ [dimi@dimi dimi]$ cat ~/cvsup.sup *default base=/var/cvsup delete compress wine release=wine host=cvs.winehq.com [dimi@dimi dimi]$
What I do then is: cvs -d /var/cvs co wine to create your working directory.
When I want to update, I do:
[dimi@dimi wine] cvsup ~/cvsup.sup [dimi@dimi wine] cvs up
Everything else is as if you work directly with the WineHQ tree, only _a_lot_ faster.
HTH, Dimi.