This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author indiedan
Recipients indiedan, tarek
Date 2010-07-21.14:05:28
SpamBayes Score 0.010221363
Marked as misclassified No
Message-id <1279721130.09.0.919872519995.issue9322@psf.upfronthosting.co.za>
In-reply-to
Content
Setting absolute paths for C source code files in setup.py breaks bdist_rpm

ext_modules=[Extension('foo', [os.path.abspath('src/foo.c')])],

results in bdist_rpm not including src/foo.c in the RPM, however

ext_modules=[Extension('foo', ['src/foo.c'])],

works just fine.
History
Date User Action Args
2010-07-21 14:05:30indiedansetrecipients: + indiedan, tarek
2010-07-21 14:05:30indiedansetmessageid: <1279721130.09.0.919872519995.issue9322@psf.upfronthosting.co.za>
2010-07-21 14:05:28indiedanlinkissue9322 messages
2010-07-21 14:05:28indiedancreate