From: Paul Brossier Date: Wed, 21 Oct 2009 17:54:58 +0000 (+0200) Subject: interfaces/python/setup.py: only compile c files X-Git-Tag: 0.4.0-beta1~609 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=992beaa9bea5d3cd1aae961f80f581d2003bcc79;p=aubio.git interfaces/python/setup.py: only compile c files --- diff --git a/interfaces/python/setup.py b/interfaces/python/setup.py index d9f392f2..dee021dc 100644 --- a/interfaces/python/setup.py +++ b/interfaces/python/setup.py @@ -2,6 +2,7 @@ from distutils.core import setup, Extension from os import listdir generated_files = listdir('generated') +generated_files = filter(lambda x: x.endswith('.c'), generated_files) generated_files = ['generated/'+f for f in generated_files] setup(name="_aubio", version="1.0",