From: Paul Brossier Date: Sun, 15 May 2016 13:31:30 +0000 (+0200) Subject: python/lib/gen_external.py: use os.path.join X-Git-Tag: 0.4.4~300^2~37 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=89b04e84ad78508d40b357f49b2c14ae57ffb69e;p=aubio.git python/lib/gen_external.py: use os.path.join --- diff --git a/python/lib/gen_external.py b/python/lib/gen_external.py index 2fd15195..2486994f 100644 --- 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"