[Dev] experimenting with python 2.4

Heikki Toivonen heikki at osafoundation.org
Tue Nov 30 17:07:51 PST 2004


Andi Vajda wrote:
>   - do a full build in external and internal and install the binaries:
>     cd external
>     make
>     cd ../internal
>     make
>     cd ../external
>     make binaries install
>     cd ../internal
>     make install

'cd external;make world' should also work - it will do everything.

>   - as a precaution, remove the old .pyc and .pyo files in Chandler
>     cd chandler
>     find . -name '*.py?' | xargs rm

There may be *.pyd files you do NOT want to delete. So do this instead:

find . -name '*.pyo' | xargs rm
find . -name '*.pyc' | xargs rm

-- 
   Heikki Toivonen

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 249 bytes
Desc: OpenPGP digital signature
Url : http://lists.osafoundation.org/pipermail/dev/attachments/20041130/1f6fd64f/signature.bin


More information about the Dev mailing list