PDA

View Full Version : Update xbmc from cvs


Kjetil N
2009-02-08, 17:58
Hi,

In fear of asking something that may have been answered many times allready.

Two simple questions that I could have just tried and failed or sucseeded.

1. After I've downed the latest CVS and compiled should I un-install before downloading again for the latest updates or just do the same as first install?

2. When using the latest CVS can I stil use apt-get for scripts and skins?

I know I should just try and see but hey easy questions easy answers.

Aenima99x
2009-02-08, 18:08
Just do the following....

svn up
make clean
./configure
make -j2
sudo make install

olympia
2009-02-08, 18:45
Just do the following....

svn up
make clean
./configure
make -j2
sudo make install

I would do also a sudo make uninstall, as first step. Not a cruical test, but to be on the safe side. And obviously you have to be in the directory, where you have downloaded xbmc source.

So:

sudo make uninstall
svn up
make clean
./configure
make -j2
sudo make install

or, if you want to revert:

sudo make uninstall
svn up -r xxxxx
make clean
./configure
make -j2
sudo make install

where xxxxx is obiosuly the revision number, which you want to revert

Aenima99x
2009-02-08, 19:33
FWIW - Never had any problems not doing the uninstall.

BLKMGK
2009-02-09, 06:30
FWIW - Never had any problems not doing the uninstall.

Ditto! I have yet to ever do this. I have had things go wonky once or twice but uninstall usually didn't help then either. <shrug>

mr_raider
2009-05-15, 21:09
Does anyone know the procedure to definitively uninstall the version compiled from SVN to revert back too packaged builds?

Do I just

sudo make uninstall


And then re-download from the repos?