After successfully compiling Blender 2.5 on my Linux Mint OS, I decided to create a batch script to automate the update and build process:
#!/bin/bash
cd ~/blender-svn/blender/
svn up
python scons/scons.py -j 2
Thanks a lot to François Tarlier for suggesting to build on my own. ^_^
#!/bin/bash
cd ~/blender-svn/blender/
svn up
python scons/scons.py -j 2
Thanks a lot to François Tarlier for suggesting to build on my own. ^_^

