mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
11 lines
245 B
Python
11 lines
245 B
Python
# -*- 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)
|