summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-01-09 23:24:54 +0000
committerDavid Robillard <d@drobilla.net>2007-01-09 23:24:54 +0000
commit532f6aad4ac79ca15d69deccd18fca90e444c437 (patch)
tree0d4ca5449af8eb48ad56e163efcab42c4656e8de /templates
parentef6b25432d9c46d71b08c0f7d5f2686df428c4e8 (diff)
Merged with trunk R1283.
NOTE: Compiles, but broken (crash on adding MIDI track). git-svn-id: svn://localhost/ardour2/branches/midi@1292 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'templates')
-rw-r--r--templates/SConscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/SConscript b/templates/SConscript
index 7fa556530b..60a80c5619 100644
--- a/templates/SConscript
+++ b/templates/SConscript
@@ -3,6 +3,7 @@
import os
import glob
template_files = glob.glob('*.template.in')
+files = glob.glob('*.template')
Import('env install_prefix subst_dict')
@@ -13,5 +14,5 @@ for template in template_files:
Default(template_build)
-env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour2/templates'), template_build))
+env.Alias('install', env.Install(os.path.join(install_prefix, 'share', 'ardour2', 'templates'), files))
env.Alias('tarball', env.Distribute (env['DISTTREE'], [ 'SConscript' ] + template_build))