chiark / gitweb /
Fix installs with pip --user
authorTorsten Grote <t@grobox.de>
Mon, 3 Apr 2017 12:55:20 +0000 (09:55 -0300)
committerTorsten Grote <t@grobox.de>
Mon, 3 Apr 2017 12:55:20 +0000 (09:55 -0300)
setup.py

index a0917810e2ff5278f301fafa13442f9cba765c92..ab74c94610289424bb016dde4dfb91eb7d2533fe 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,13 +1,14 @@
 #!/usr/bin/env python3
 
 from setuptools import setup
+import os
 import sys
 
-# workaround issue on OSX, where sys.prefix is not an installable location
-if sys.platform == 'darwin' and sys.prefix.startswith('/System'):
-    data_prefix = '.'
-else:
+# workaround issue on OSX or --user installs, where sys.prefix is not an installable location
+if os.access(sys.prefix, os.W_OK | os.X_OK):
     data_prefix = sys.prefix
+else:
+    data_prefix = '.'
 
 setup(name='fdroidserver',
       version='0.7.0',