From 29cf6674b5588d4faacb1e973568bef0bfadc2ff Mon Sep 17 00:00:00 2001 From: John Ralls Date: Mon, 11 Mar 2013 22:44:23 +0000 Subject: [PATCH] Install image files to $(prefix)/share/gramps/images Instead of $(prefix)/share/gramps/icons/hicolor, which was an old (early Gtk2) theming requirement. svn: r21615 --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 79a273f43..a189fdb76 100644 --- a/setup.py +++ b/setup.py @@ -432,11 +432,11 @@ IMAGE_16 = glob.glob(os.path.join('images', '16x16', '*.png')) IMAGE_22 = glob.glob(os.path.join('images', '22x22', '*.png')) IMAGE_48 = glob.glob(os.path.join('images', '48x48', '*.png')) IMAGE_SC = glob.glob(os.path.join('images', 'scalable', '*.svg')) -data_files_gui.append(('share/gramps/icons/hicolor', IMAGE_FILES)) -data_files_gui.append(('share/gramps/icons/hicolor/16x16', IMAGE_16)) -data_files_gui.append(('share/gramps/icons/hicolor/22x22', IMAGE_22)) -data_files_gui.append(('share/gramps/icons/hicolor/48x48', IMAGE_48)) -data_files_gui.append(('share/gramps/icons/hicolor/scalable', IMAGE_SC)) +data_files_gui.append(('share/gramps/images', IMAGE_FILES)) +data_files_gui.append(('share/gramps/images/16x16', IMAGE_16)) +data_files_gui.append(('share/gramps/images/22x22', IMAGE_22)) +data_files_gui.append(('share/gramps/images/48x48', IMAGE_48)) +data_files_gui.append(('share/gramps/images/scalable', IMAGE_SC)) data_files_webapp = [] TEMPLATE_FILES = glob.glob(os.path.join('data/templates', '*.html'))