mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-14 19:10:11 +01:00
Merge branch 'local-install' into 'master'
Fix installs with pip --user See merge request !244
This commit is contained in:
commit
159ca824b7
9
setup.py
9
setup.py
@ -1,13 +1,14 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
# workaround issue on OSX, where sys.prefix is not an installable location
|
# workaround issue on OSX or --user installs, where sys.prefix is not an installable location
|
||||||
if sys.platform == 'darwin' and sys.prefix.startswith('/System'):
|
if os.access(sys.prefix, os.W_OK | os.X_OK):
|
||||||
data_prefix = '.'
|
|
||||||
else:
|
|
||||||
data_prefix = sys.prefix
|
data_prefix = sys.prefix
|
||||||
|
else:
|
||||||
|
data_prefix = '.'
|
||||||
|
|
||||||
setup(name='fdroidserver',
|
setup(name='fdroidserver',
|
||||||
version='0.7.0',
|
version='0.7.0',
|
||||||
|
Loading…
Reference in New Issue
Block a user