shithub: aubio

Download patch

ref: 89b04e84ad78508d40b357f49b2c14ae57ffb69e
parent: 5f6324e90e6f49d5d412630fdc2774f97f71fbf6
author: Paul Brossier <piem@piem.org>
date: Sun May 15 11:31:30 EDT 2016

python/lib/gen_external.py: use os.path.join

--- a/python/lib/gen_external.py
+++ b/python/lib/gen_external.py
@@ -1,7 +1,7 @@
 import os, glob
 
-header = 'src/aubio.h'
-output_path = 'python/gen'
+header = os.path.join('src', 'aubio.h')
+output_path = os.path.join('python', 'gen')
 
 source_header = """// this file is generated! do not modify
 #include "aubio-types.h"