WHen specifying library_dirs in a Python distutils.core.Extension I get this error when trying to build:

/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/distutils/dist.py:263: UserWarning: Unknown distribution option: 'library_dirs'
  warnings.warn(msg)

Why is this? I am using Python 2.5 on Mac OS X.

link|improve this question

65% accept rate
As per the doc links, this is available for 2.5. docs.python.org/release/2.5/dist/… – pyfunc Oct 7 '10 at 4:40
Can you post your py file too. – pyfunc Oct 7 '10 at 4:41
feedback

1 Answer

up vote 1 down vote accepted

The error means you're not passing library_dirs to distutils.core.Extension, but to the distutils.core.setup function.

link|improve this answer
You're right. Thanks – None Oct 7 '10 at 23:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.