Fixed indentation error. Closes bug #746953.

This commit is contained in:
Jack Jansen 2003-06-01 19:27:40 +00:00
parent c4b570f218
commit 19c0d943e9
1 changed files with 2 additions and 2 deletions

View 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