generator.py: update for newest waf
authorPaul Brossier <piem@piem.org>
Mon, 21 Nov 2011 19:30:42 +0000 (12:30 -0700)
committerPaul Brossier <piem@piem.org>
Mon, 21 Nov 2011 19:30:42 +0000 (12:30 -0700)
interfaces/python/generator.py

index f902cfab58206ff978ca5dcc99bfd802eae026ff..0730bbf42a78fb7ade37dede23985b30ddc0847d 100644 (file)
@@ -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)