[Python-checkins] python/dist/src/Lib/distutils unixccompiler.py,1.53,1.54

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Sun, 01 Jun 2003 12:27:43 -0700


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

Modified Files:
	unixccompiler.py 
Log Message:
Fixed indentation error. Closes bug #746953.


Index: unixccompiler.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/unixccompiler.py,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** unixccompiler.py	31 May 2003 08:09:21 -0000	1.53
--- unixccompiler.py	1 Jun 2003 19:27:40 -0000	1.54
***************
*** 204,210 ****
              # MacOSX's linker doesn't understand the -R flag at all
              return "-L" + dir
!       elif sys.platform[:5] == "hp-ux":
              return "+s -L" + dir
!       elif compiler[:3] == "gcc" or compiler[:3] == "g++":
            return "-Wl,-R" + dir
          else:
--- 204,210 ----
              # MacOSX's linker doesn't understand the -R flag at all
              return "-L" + dir
!         elif sys.platform[:5] == "hp-ux":
              return "+s -L" + dir
!         elif compiler[:3] == "gcc" or compiler[:3] == "g++":
            return "-Wl,-R" + dir
          else: