From: Paul Brossier Date: Mon, 21 Nov 2011 19:30:42 +0000 (-0700) Subject: generator.py: update for newest waf X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7f8ff8b35c2184bb3df4cca7a8a58a914a10c4a0;p=aubio.git generator.py: update for newest waf --- diff --git a/interfaces/python/generator.py b/interfaces/python/generator.py index f902cfab..0730bbf4 100644 --- a/interfaces/python/generator.py +++ b/interfaces/python/generator.py @@ -6,7 +6,7 @@ import os, sys skip_objects = ['fft', 'pvoc', 'filter', 'filterbank', 'resampler'] -cpp_output = [l.strip() for l in os.popen('cpp -DAUBIO_UNSTABLE=1 -I ../../build/default/src ../../src/aubio.h').readlines()] +cpp_output = [l.strip() for l in os.popen('cpp -DAUBIO_UNSTABLE=1 -I../../build/src ../../src/aubio.h').readlines()] cpp_output = filter(lambda y: len(y) > 1, cpp_output) cpp_output = filter(lambda y: not y.startswith('#'), cpp_output)