I am using the nightly builds from the SVN. I'm wondering what's the best way to update my installation? I actually delete my build directory, reconfigure ( with a bash script ), and then recompile it. Would it be best if I make clean
make distclean
make clean-bin
make clean-zipfiles
first? Or is it ok if I just install over the old one?
I've thought about changing the prefix to be in it's own dir so I can just wipe it out and start over, but thought I'd ask here first.
Thanks,
Keeper
I use GNU / Linux Fedora 12 (and soon 13)
* ./boostrap
* ./configure --with-contrib-plugins=all
* make
* su -c 'make install'
Be courageous, with Fedora 13, it will be harder :
* ./boostrap
* ./configure --with-contrib-plugins=[all plugins separated with commas, omitting codesnippets, because else you have to patch it]
* make
* su -c 'make install'
By the way, why dont you write a script in your home to handle that ? put all that in build_and_install_codeblocks_for_me.sh which could look like that :
svn checkout http://svn.berlios.de/svnroot/repos/codeblocks/trunk
cd trunk
./boostrap
./configure --with-contrib-plugins=[all plugins separated with commas, omitting codesnippets, because else you have to patch codesnippets]
make
su -c 'make install'
It should'nt be a more convenient way ?
Be courageous, with Fedora 13, it will be harder :
* ./boostrap
* ./configure --with-contrib-plugins=[all plugins separated with commas, omitting codesnippets, because else you have to patch it]
* make
* su -c 'make install'
Try
./configure --with-contrib-plugins=all,-codesnippets
Not absolutely sure about the comma (I'm forced to work on windows at the moment).
should show you the correct syntax.
Ok, this script works fine, your tip is good !
#/bin/sh
svn checkout http://svn.berlios.de/svnroot/repos/codeblocks/trunk
cd trunk
./bootstrap
make clean
./configure --with-contrib-plugins=all,-codesnippets
make
su -c 'make install'
Thanks to you, I have now revision 6261 with the new logo 8)