summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:59:27 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:59:27 -0400
commit82273a75510e01c6bc1cc08f090583a54ca45fd5 (patch)
tree20ff24b6a71df45c8986e3f48923ea68a9824374
parent9c69d6f0c3f38e1170e677a816e863bc8ec8cd72 (diff)
change install target dir for color theme files5.0-pre0
-rw-r--r--gtk2_ardour/wscript5
1 files changed, 1 insertions, 4 deletions
diff --git a/gtk2_ardour/wscript b/gtk2_ardour/wscript
index ffbaa73031..bbdd1dbf4b 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'))