]> granicus.if.org Git - python/commitdiff
Fixed indentation error. Closes bug #746953.
authorJack Jansen <jack.jansen@cwi.nl>
Sun, 1 Jun 2003 19:27:40 +0000 (19:27 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Sun, 1 Jun 2003 19:27:40 +0000 (19:27 +0000)
Lib/distutils/unixccompiler.py

index 02db910ae6cd538405846dae395543cbc828d56f..11ecb9f6aec35dd8bfb80d5fb0aad74e04a73129 100644 (file)
@@ -203,9 +203,9 @@ class UnixCCompiler(CCompiler):
         if sys.platform[:6] == "darwin":
             # MacOSX's linker doesn't understand the -R flag at all
             return "-L" + dir
-      elif sys.platform[:5] == "hp-ux":
+        elif sys.platform[:5] == "hp-ux":
             return "+s -L" + dir
-      elif compiler[:3] == "gcc" or compiler[:3] == "g++":
+        elif compiler[:3] == "gcc" or compiler[:3] == "g++":
           return "-Wl,-R" + dir
         else:
             return "-R" + dir