[Python-checkins] CVS: python/dist/src/Lib/distutils mwerkscompiler.py,1.4,1.5

Jack Jansen jackjansen@users.sourceforge.net
Sat, 10 Nov 2001 15:20:24 -0800


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

Modified Files:
	mwerkscompiler.py 
Log Message:
The libraries argument was completely ignored, fixed. Reported by
Tom Loredo.

Index: mwerkscompiler.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/mwerkscompiler.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** mwerkscompiler.py	2001/06/19 21:23:11	1.4
--- mwerkscompiler.py	2001/11/10 23:20:22	1.5
***************
*** 17,21 ****
  
  class MWerksCompiler (CCompiler) :
!     """Concrete class that implements an interface to Microsoft Visual C++,
         as defined by the CCompiler abstract class."""
  
--- 17,21 ----
  
  class MWerksCompiler (CCompiler) :
!     """Concrete class that implements an interface to MetroWerks CodeWarrior,
         as defined by the CCompiler abstract class."""
  
***************
*** 151,154 ****
--- 151,155 ----
                  sourcefiledirs.append(dirname)
          settings['sources'] = sourcefilenames
+         settings['libraries'] = libraries
          settings['extrasearchdirs'] = sourcefiledirs + include_dirs + library_dirs
          if self.dry_run: