mirror of
				https://github.com/f-droid/fdroidserver.git
				synced 2025-11-04 14:30:30 +03:00 
			
		
		
		
	Fix installs with pip --user
This commit is contained in:
		
							parent
							
								
									d8ad1c78c2
								
							
						
					
					
						commit
						6552c1fa49
					
				
					 1 changed files with 5 additions and 4 deletions
				
			
		
							
								
								
									
										9
									
								
								setup.py
									
										
									
									
									
								
							
							
						
						
									
										9
									
								
								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',
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue