[Python-checkins] CVS: python/dist/src/Lib/distutils/command build_ext.py,1.68,1.69

A.M. Kuchling python-dev@python.org
Mon, 08 Jan 2001 19:15:49 -0800


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory usw-pr-cvs1:/tmp/cvs-serv4467

Modified Files:
	build_ext.py 
Log Message:
Check in patch #102971: if library_dirs is a string, split it using 
   os.pathsep


Index: build_ext.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_ext.py,v
retrieving revision 1.68
retrieving revision 1.69
diff -C2 -r1.68 -r1.69
*** build_ext.py	2000/09/30 18:27:54	1.68
--- build_ext.py	2001/01/09 03:15:47	1.69
***************
*** 150,153 ****
--- 150,155 ----
          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 = []