summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-01-01 17:43:53 +0000
committerCarl Hetherington <carl@carlh.net>2011-01-01 17:43:53 +0000
commite5c69387c0cdfae2f5853c941198490b2b95c80e (patch)
treef25feee309fe9ff1af61909b8d0d959b55419cb8 /templates
parentb638c3f6b068e9152ce90b0e3a18333b35443ce7 (diff)
Fix template install properly.
git-svn-id: svn://localhost/ardour2/branches/3.0@8404 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'templates')
-rw-r--r--templates/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/wscript b/templates/wscript
index 028eb98e4b..c6312c8411 100644
--- a/templates/wscript
+++ b/templates/wscript
@@ -23,8 +23,8 @@ def build(bld):
for t in templates:
b = os.path.basename(t)
obj = bld.new_task_gen('subst')
- obj.source = b
- obj.target = b.replace('.in', '')
+ obj.source = [ b ]
+ obj.target = [ b.replace('.in', '') ]
obj.dict = subst_dict
obj.install_path = os.path.join(bld.env['DATADIR'], 'ardour3', 'templates')