fix wscript so that gtk rc files are always built properly (not sure why this works, but it does)
git-svn-id: svn://localhost/ardour2/branches/3.0@10278 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
cfc0dfdc7e
commit
a285607ad2
@ -557,19 +557,15 @@ def build(bld):
|
||||
obj.target = 'ardour3_widgets.rc'
|
||||
obj.install_path = None
|
||||
|
||||
bld (
|
||||
rule = include_processor,
|
||||
source = 'ardour3_ui_dark.rc.pre',
|
||||
target = 'ardour3_ui_dark.rc',
|
||||
install_path = '${SYSCONFDIR}/ardour3'
|
||||
)
|
||||
obj = bld (rule = include_processor)
|
||||
obj.source = [ 'ardour3_ui_dark.rc.pre' ]
|
||||
obj.target = 'ardour3_ui_dark.rc'
|
||||
obj.install_path = '${SYSCONFDIR}/ardour3'
|
||||
|
||||
bld (
|
||||
rule = include_processor,
|
||||
source = 'ardour3_ui_light.rc.pre',
|
||||
target = 'ardour3_ui_light.rc',
|
||||
install_path = '${SYSCONFDIR}/ardour3'
|
||||
)
|
||||
obj = bld (rule = include_processor)
|
||||
obj.source = [ 'ardour3_ui_light.rc.pre' ]
|
||||
obj.target = 'ardour3_ui_light.rc'
|
||||
obj.install_path = '${SYSCONFDIR}/ardour3'
|
||||
|
||||
# Menus
|
||||
menus_argv = []
|
||||
|
Loading…
Reference in New Issue
Block a user