From: Jack Jansen Date: Sun, 1 Jun 2003 19:27:40 +0000 (+0000) Subject: Fixed indentation error. Closes bug #746953. X-Git-Tag: v2.3c1~548 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=19c0d943e952b57ded7c7dbad228092b347649b2;p=thirdparty%2FPython%2Fcpython.git Fixed indentation error. Closes bug #746953. --- diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py index 02db910ae6cd..11ecb9f6aec3 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