summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-06-01 19:27:40 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-06-01 19:27:40 (GMT)
commit19c0d943e952b57ded7c7dbad228092b347649b2 (patch)
treeb7b1dd604f68e1a801979e0719535d50ccccffb2
parentc4b570f2188f0914c5ba4f8c6a4f412a301c13a4 (diff)
downloadcpython-19c0d943e952b57ded7c7dbad228092b347649b2.zip
cpython-19c0d943e952b57ded7c7dbad228092b347649b2.tar.gz
cpython-19c0d943e952b57ded7c7dbad228092b347649b2.tar.bz2
Fixed indentation error. Closes bug #746953.
-rw-r--r--Lib/distutils/unixccompiler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py
index 02db910..11ecb9f 100644
--- a/Lib/distutils/unixccompiler.py
+++ b/Lib/distutils/unixccompiler.py
@@ -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