X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=templates%2FSConscript;h=8c7f9885f6c746075784277cc8a135f23292fca6;hb=e1ca7942c80597325a7f01153b809c4956757dce;hp=7fa556530b1e083a53a84211d33ed5ef484bf117;hpb=952be81efe150e37edbeff07a9b69ddb9c94b72a;p=ardour.git diff --git a/templates/SConscript b/templates/SConscript index 7fa556530b..8c7f9885f6 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', 'ardour3', 'templates'), files)) env.Alias('tarball', env.Distribute (env['DISTTREE'], [ 'SConscript' ] + template_build))