diff options
author | Paul Davis <paul@linuxaudiosystems.com> | 2016-05-31 15:59:27 -0400 |
---|---|---|
committer | Paul Davis <paul@linuxaudiosystems.com> | 2016-05-31 15:59:27 -0400 |
commit | 82273a75510e01c6bc1cc08f090583a54ca45fd5 (patch) | |
tree | 20ff24b6a71df45c8986e3f48923ea68a9824374 | |
parent | 9c69d6f0c3f38e1170e677a816e863bc8ec8cd72 (diff) | |
download | ardour-origin/vca2.zip ardour-origin/vca2.tar.gz ardour-origin/vca2.tar.bz2 |
change install target dir for color theme files5.0-pre0origin/vca2
-rw-r--r-- | gtk2_ardour/wscript | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript index ffbaa73..bbdd1db 100644 --- a/gtk2_ardour/wscript +++ b/gtk2_ardour/wscript @@ -816,10 +816,7 @@ def build(bld): bld.install_files(bld.env['CONFDIR'], 'default_ui_config') # Color Themes. Find each color file for this program, strip the program name # and install. - print "Colors: ", bld.path.ant_glob('themes/*-' + Options.options.program_name.lower() + '.colors') - for colors in bld.path.ant_glob ('themes/*-' + Options.options.program_name.lower() + '.colors'): - install_name = os.path.basename (colors.srcpath().replace ('-' + Options.options.program_name.lower(), '')) - bld.install_as (os.path.join(bld.env['CONFDIR'], 'themes', install_name), colors) + bld.install_files (os.path.join(bld.env['DATADIR'], 'themes'), bld.path.ant_glob ('themes/*-' + Options.options.program_name.lower() + '.colors')); # Default export stuff bld.install_files(os.path.join(bld.env['CONFDIR'], 'export'), bld.path.ant_glob('export/*.format')) |