summaryrefslogtreecommitdiff
path: root/templates/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'templates/SConscript')
-rw-r--r--templates/SConscript12
1 files changed, 10 insertions, 2 deletions
diff --git a/templates/SConscript b/templates/SConscript
index 4269a1b988..2ec3442f48 100644
--- a/templates/SConscript
+++ b/templates/SConscript
@@ -2,8 +2,16 @@
import os
import glob
-template_files = glob.glob('*.template')
+template_files = glob.glob('*.template.in')
+
+Import('env install_prefix subst_dict')
+
+template_build = []
+
+for template in template_files:
+ template_build = template_build + [env.SubstInFile (template[:-3], template, SUBST_DICT = subst_dict)]
+
+Default(template_build)
-Import('env install_prefix')
env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour/templates'), template_files))
env.Alias('tarball', env.Distribute (env['DISTTREE'], [ 'SConscript' ] + template_files))