Skip to content

Commit 27c2a4e

Browse files
committed
Treat FreeBSD just like Linux in setup.py
1 parent 01cfb8f commit 27c2a4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
data_files = []
20-
if platform.system() == 'Linux':
20+
if platform.system() == 'Linux' or platform.system() == 'FreeBSD':
2121
usr_share = os.path.join(sys.prefix, "share")
2222
data_files += [
2323
(os.path.join(usr_share, 'applications/'), ['electrum.desktop']),

0 commit comments

Comments
 (0)