[SciPy-user] fftpack fails on cvs build (OSX)

Pearu Peterson pearu at scipy.org
Tue Feb 17 10:47:48 EST 2004



On Tue, 17 Feb 2004, Christopher Fonnesbeck wrote:

> 
> On Feb 17, 2004, at 10:26 AM, Pearu Peterson wrote:
> 
> > Could you update cvs and try again? I have added Bob's suggestion 
> > there.
> > Let me know if it works or not.
> 
> You added:
> 
> opt.append('-framework','Python')

Oops. I meant what's below.

> which gives an error, since append only takes 1 argument. Substituting:
> 
> opt.append("-framework Python")
> 
> gives the following error:
> 
> g77: Python: No such file or directory

Could you try:

opt.extend(['-framework','Python'])

?

Pearu



More information about the SciPy-User mailing list