summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
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')