1
0

icons: instead of symlinks, just mv "icons" dir

symlinks are really inconvenient on Windows
(when running from cloned source)

follow-up #5055
This commit is contained in:
SomberNight
2019-02-07 18:57:25 +01:00
parent 9beabc0311
commit 2c71b9da0c
89 changed files with 14 additions and 18 deletions

View File

@@ -47,7 +47,7 @@ if platform.system() in ['Linux', 'FreeBSD', 'DragonFly']:
usr_share = os.path.expanduser('~/.local/share')
data_files += [
(os.path.join(usr_share, 'applications/'), ['electrum.desktop']),
(os.path.join(usr_share, icons_dirname), ['icons/electrum.png']),
(os.path.join(usr_share, icons_dirname), ['electrum/gui/icons/electrum.png']),
]
extras_require = {