mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
Fix template install properly.
git-svn-id: svn://localhost/ardour2/branches/3.0@8404 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
b638c3f6b0
commit
e5c69387c0
2 changed files with 4 additions and 3 deletions
|
|
@ -23,8 +23,8 @@ def build(bld):
|
||||||
for t in templates:
|
for t in templates:
|
||||||
b = os.path.basename(t)
|
b = os.path.basename(t)
|
||||||
obj = bld.new_task_gen('subst')
|
obj = bld.new_task_gen('subst')
|
||||||
obj.source = b
|
obj.source = [ b ]
|
||||||
obj.target = b.replace('.in', '')
|
obj.target = [ b.replace('.in', '') ]
|
||||||
obj.dict = subst_dict
|
obj.dict = subst_dict
|
||||||
obj.install_path = os.path.join(bld.env['DATADIR'], 'ardour3', 'templates')
|
obj.install_path = os.path.join(bld.env['DATADIR'], 'ardour3', 'templates')
|
||||||
|
|
||||||
|
|
|
||||||
3
wscript
3
wscript
|
|
@ -31,7 +31,8 @@ children = [
|
||||||
'libs/clearlooks-newer',
|
'libs/clearlooks-newer',
|
||||||
'libs/audiographer',
|
'libs/audiographer',
|
||||||
'libs/gnomecanvas',
|
'libs/gnomecanvas',
|
||||||
'gtk2_ardour'
|
'gtk2_ardour',
|
||||||
|
'templates'
|
||||||
]
|
]
|
||||||
|
|
||||||
i18n_children = [
|
i18n_children = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue