change install target dir for color theme files 5.0-pre0
authorPaul Davis <paul@linuxaudiosystems.com>
Tue, 31 May 2016 19:59:27 +0000 (15:59 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 31 May 2016 19:59:27 +0000 (15:59 -0400)
gtk2_ardour/wscript

index ffbaa73031feae84d9e6e7fdc7e2bafed8880425..bbdd1dbf4b7520c9ee182a8939fc3f635a8e22a7 100644 (file)
@@ -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'))