From 0747ae3b208aa88b882c49a2d3b148017f9baf57 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 25 May 2011 21:00:47 +0000 Subject: Fix building documentation in recursive build git-svn-id: http://svn.drobilla.net/serd/trunk@201 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- wscript | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'wscript') diff --git a/wscript b/wscript index 9c0ae8d7..36747dc5 100644 --- a/wscript +++ b/wscript @@ -159,38 +159,39 @@ def amalgamate(ctx): amalgamation.close() +def build_dir(ctx, subdir): + if autowaf.is_child(): + return os.path.join('build', APPNAME, subdir) + else: + return os.path.join('build', subdir) + def fix_docs(ctx): try: top = os.getcwd() - os.chdir('build/doc/html') + os.chdir(build_dir(ctx, 'doc/html')) os.system("sed -i 's/SERD_API //' group__serd.html") os.system("sed -i 's/SERD_DEPRECATED //' group__serd.html") os.remove('index.html') os.symlink('group__serd.html', 'index.html') os.chdir(top) - os.chdir('build/doc/man/man3') + os.chdir(build_dir(ctx, 'doc/man/man3')) os.system("sed -i 's/SERD_API //' serd.3") + os.chdir(top) except: - Logs.error("Failed to fix up documentation") + Logs.error("Failed to fix up %s documentation" % APPNAME) def upload_docs(ctx): os.system("rsync -ravz --delete -e ssh build/doc/html/ drobilla@drobilla.net:~/drobilla.net/docs/serd/") def test(ctx): - blddir = "" - top_level = (len(ctx.stack_path) > 1) - if top_level: - blddir = 'build/serd/tests' - else: - blddir = 'build/tests' - + blddir = build_dir(ctx, 'tests') try: os.makedirs(blddir) except: pass - for i in glob.glob('build/tests/*.*'): + for i in glob.glob(blddir + '/*.*'): os.remove(i) srcdir = ctx.path.abspath() -- cgit v1.2.1