Commit 824d1471 authored by Jack Jansen's avatar Jack Jansen

Fixed indentation error. Closes bug #746953.

parent 2b7bd611
...@@ -203,9 +203,9 @@ class UnixCCompiler(CCompiler): ...@@ -203,9 +203,9 @@ class UnixCCompiler(CCompiler):
if sys.platform[:6] == "darwin": if sys.platform[:6] == "darwin":
# MacOSX's linker doesn't understand the -R flag at all # MacOSX's linker doesn't understand the -R flag at all
return "-L" + dir return "-L" + dir
elif sys.platform[:5] == "hp-ux": elif sys.platform[:5] == "hp-ux":
return "+s -L" + dir return "+s -L" + dir
elif compiler[:3] == "gcc" or compiler[:3] == "g++": elif compiler[:3] == "gcc" or compiler[:3] == "g++":
return "-Wl,-R" + dir return "-Wl,-R" + dir
else: else:
return "-R" + dir return "-R" + dir
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment