mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
12 lines
245 B
Text
12 lines
245 B
Text
|
|
# -*- python -*-
|
||
|
|
|
||
|
|
Import('env ardour_version')
|
||
|
|
|
||
|
|
manual_subst_dict = { }
|
||
|
|
|
||
|
|
manual_subst_dict['%VERSION%'] = ardour_version
|
||
|
|
|
||
|
|
entities = env.SubstInFile ('xml/entities.ent', 'xml/entities.ent.in', SUBST_DICT = manual_subst_dict);
|
||
|
|
|
||
|
|
Default(entities)
|