From 3ed2a0e0314aaf72512cae9f28d03f2c3a9d5652 Mon Sep 17 00:00:00 2001 From: Jakob Jakobson <31574479+JakobJakobson@users.noreply.github.com> Date: Wed, 7 Feb 2018 22:15:21 +0100 Subject: [PATCH] Change share/pixmaps to share/icons in setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 583ae60724e..2cb15468cb2 100644 --- a/setup.py +++ b/setup.py @@ -79,11 +79,11 @@ def get_data_files(): if sys.platform.startswith('linux'): if PY3: data_files = [('share/applications', ['scripts/spyder3.desktop']), - ('share/pixmaps', ['img_src/spyder3.png']), + ('share/icons', ['img_src/spyder3.png']), ('share/metainfo', ['scripts/spyder3.appdata.xml'])] else: data_files = [('share/applications', ['scripts/spyder.desktop']), - ('share/pixmaps', ['img_src/spyder.png'])] + ('share/icons', ['img_src/spyder.png'])] elif os.name == 'nt': data_files = [('scripts', ['img_src/spyder.ico', 'img_src/spyder_reset.ico'])]