Merge pull request #1150 from kyuupichan/master

Setup same for FreeBSD and DragonFly
This commit is contained in:
ThomasV 2015-04-23 15:49:51 +02:00
commit 86adcb12cb

View file

@ -17,7 +17,7 @@ if sys.version_info[:3] < (2, 7, 0):
data_files = [] data_files = []
if platform.system() == 'Linux' or platform.system() == 'FreeBSD': if platform.system() in [ 'Linux', 'FreeBSD', 'DragonFly']:
usr_share = os.path.join(sys.prefix, "share") usr_share = os.path.join(sys.prefix, "share")
data_files += [ data_files += [
(os.path.join(usr_share, 'applications/'), ['electrum.desktop']), (os.path.join(usr_share, 'applications/'), ['electrum.desktop']),