mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	Check in patch #102971: if library_dirs is a string, split it using
os.pathsep
This commit is contained in:
		
							parent
							
								
									9d56cd100e
								
							
						
					
					
						commit
						705a3ada6f
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		|  | @ -149,6 +149,8 @@ def finalize_options (self): | |||
|             self.libraries = [] | ||||
|         if self.library_dirs is None: | ||||
|             self.library_dirs = [] | ||||
|         elif type(self.library_dirs) is StringType: | ||||
|             self.library_dirs = string.split(self.library_dirs, os.pathsep) | ||||
|         if self.rpath is None: | ||||
|             self.rpath = [] | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andrew M. Kuchling
						Andrew M. Kuchling