[Python-checkins] python/dist/src/Lib/distutils sysconfig.py, 1.57, 1.58

loewis at users.sourceforge.net loewis at users.sourceforge.net
Fri Oct 24 16:09:25 EDT 2003


Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory sc8-pr-cvs1:/tmp/cvs-serv25282/Lib/distutils

Modified Files:
	sysconfig.py 
Log Message:
Patch #812378: Normalize white space.


Index: sysconfig.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/sysconfig.py,v
retrieving revision 1.57
retrieving revision 1.58
diff -C2 -d -r1.57 -r1.58
*** sysconfig.py	10 Feb 2003 14:02:33 -0000	1.57
--- sysconfig.py	24 Oct 2003 20:09:23 -0000	1.58
***************
*** 71,77 ****
      elif os.name == "mac":
          if plat_specific:
!                 return os.path.join(prefix, "Mac", "Include")
          else:
!                 return os.path.join(prefix, "Include")
      elif os.name == "os2":
          return os.path.join(prefix, "Include")
--- 71,77 ----
      elif os.name == "mac":
          if plat_specific:
!             return os.path.join(prefix, "Mac", "Include")
          else:
!             return os.path.join(prefix, "Include")
      elif os.name == "os2":
          return os.path.join(prefix, "Include")
***************
*** 161,165 ****
              ldshared = ldshared + ' ' + os.environ['LDFLAGS']
          if basecflags:
!         	opt = basecflags + ' ' + opt
          if os.environ.has_key('CFLAGS'):
              opt = opt + ' ' + os.environ['CFLAGS']
--- 161,165 ----
              ldshared = ldshared + ' ' + os.environ['LDFLAGS']
          if basecflags:
!             opt = basecflags + ' ' + opt
          if os.environ.has_key('CFLAGS'):
              opt = opt + ' ' + os.environ['CFLAGS']





More information about the Python-checkins mailing list