[Matplotlib-users] matplotlib setup is trying to build macosx extension on linux ?

2009-10-14 Thread David Cournapeau
Hi, I updated matplotlib to 0.99.1, and got a weird build failure: gcc: error trying to exec 'cc1obj': execvp: No such file or directory I realized that cc1obj stands for the objective C compiler, and that it is trying to build the macosx extension, but I am on Ubuntu with python 2.6, so it

Re: [Matplotlib-users] matplotlib setup is trying to build macosx extension on linux ?

2009-10-14 Thread Jouni K . Seppänen
David Cournapeau da...@ar.media.kyoto-u.ac.jp writes: This would always build the mac os x extension if options['build_macosx'] is True, which is the case for me (it is set-up in setup.cfg, which I did not touch). The setup.cfg file is included in the distribution by mistake. Just delete it

Re: [Matplotlib-users] matplotlib setup is trying to build macosx extension on linux ?

2009-10-14 Thread David Cournapeau
Jouni K. Seppänen wrote: David Cournapeau da...@ar.media.kyoto-u.ac.jp writes: The setup.cfg file is included in the distribution by mistake. Just delete it before building. Ah, that would explain it, indeed. Thanks, David