13
0

change install target dir for color theme files

This commit is contained in:
Paul Davis 2016-05-31 15:59:27 -04:00
parent 9c69d6f0c3
commit 82273a7551

View File

@ -816,10 +816,7 @@ def build(bld):
bld.install_files(bld.env['CONFDIR'], 'default_ui_config') bld.install_files(bld.env['CONFDIR'], 'default_ui_config')
# Color Themes. Find each color file for this program, strip the program name # Color Themes. Find each color file for this program, strip the program name
# and install. # and install.
print "Colors: ", bld.path.ant_glob('themes/*-' + Options.options.program_name.lower() + '.colors') bld.install_files (os.path.join(bld.env['DATADIR'], 'themes'), 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)
# Default export stuff # Default export stuff
bld.install_files(os.path.join(bld.env['CONFDIR'], 'export'), bld.path.ant_glob('export/*.format')) bld.install_files(os.path.join(bld.env['CONFDIR'], 'export'), bld.path.ant_glob('export/*.format'))