How to make python2.5 default in scratchbox?

2009-12-14 Thread Till Harbaum / Lists
Hi, i am trying to port some software that requires scons at build time and which in turn needs python2.5. There is a python 2.5 in the repository, but scratchbox comes with its own python 2.3. Now the question: How do i make python2.5 the default? And this needs to be in a way that also

Re: How to make python2.5 default in scratchbox?

2009-12-14 Thread Faheem Pervez
Hiya, My favourite way (works for CDBS, too, without the usual shit CDBS brings): In debian/rules, near the top: SBOX_REDIRECT_IGNORE := /usr/bin/python export SBOX_REDIRECT_IGNORE PATH := /usr/bin:$(PATH) export PATH Make sure to Build-Depend on python2.5, too. Best Regards, Faheem On Mon,

Re: How to make python2.5 default in scratchbox?

2009-12-14 Thread Anderson Lizardo
On Mon, Dec 14, 2009 at 7:59 AM, Till Harbaum / Lists li...@harbaum.org wrote: Hi, i am trying to port some software that requires scons at build time and which in turn needs python2.5. There is a python 2.5 in the repository, but scratchbox comes with its own python 2.3. Now the