From 6552c1fa49e6097173146429095a373d29d2b764 Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Mon, 3 Apr 2017 09:55:20 -0300 Subject: [PATCH] Fix installs with pip --user --- setup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index a0917810..ab74c946 100644 --- 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',