[Python-checkins] CVS: python/dist/src setup.py,1.2,1.3

A.M. Kuchling akuchling@users.sourceforge.net
Wed, 17 Jan 2001 12:20:46 -0800


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv8104

Modified Files:
	setup.py 
Log Message:
Use the extended library search path when looking for readline (simple 
   oversight in using self.compiler.library_dirs)


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** setup.py	2001/01/17 15:59:25	1.2
--- setup.py	2001/01/17 20:20:44	1.3
***************
*** 174,178 ****
  
          # readline
!         if (self.compiler.find_library_file(self.compiler.library_dirs, 'readline')):
              exts.append( Extension('readline', ['readline.c'],
                                     libraries=['readline', 'termcap']) )
--- 174,178 ----
  
          # readline
!         if (self.compiler.find_library_file(lib_dirs, 'readline')):
              exts.append( Extension('readline', ['readline.c'],
                                     libraries=['readline', 'termcap']) )