From 7f8ff8b35c2184bb3df4cca7a8a58a914a10c4a0 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 21 Nov 2011 12:30:42 -0700 Subject: [PATCH] generator.py: update for newest waf --- interfaces/python/generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.26.2