Display audio file format in the menu bar (#4016).
[ardour.git] / templates / wscript
index 028eb98e4b72174d4e456586a0748eae9c1f3074..62ed37e5a2df8f452a50c6f6323e9c57b31ff9f9 100644 (file)
@@ -10,7 +10,7 @@ def configure(conf):
     pass
 
 def build(bld):
-    
+
     subst_dict = {}
     if bld.env['COREAUDIO']:
         subst_dict['%JACK_INPUT%'] = 'coreaudio:Built-in Audio:in'
@@ -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')