From 55f0bb692a31f6a9d5f5c27ad4e749185d62c125 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 24 Aug 2017 15:26:14 +0200 Subject: [PATCH] fix waf template install --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index fa0fb113bb..c7e4245024 100644 --- a/wscript +++ b/wscript @@ -1351,7 +1351,7 @@ def build(bld): bld.install_files (bld.env['CONFDIR'], 'system_config') - bld.install_files (os.path.join (bld.env['DATADIR'], 'templates'), bld.path.ant_glob ('templates/**')) + bld.install_files (os.path.join (bld.env['DATADIR'], 'templates'), bld.path.ant_glob ('templates/**'), cwd=bld.path.find_dir ('templates'), relative_trick=True) if bld.env['RUN_TESTS']: bld.add_post_fun(test) -- 2.30.2