summaryrefslogtreecommitdiff
path: root/numpy/distutils/fcompiler/intel.py
diff options
context:
space:
mode:
authorRobert Kern <robert.kern@gmail.com>2007-12-04 08:02:06 +0000
committerRobert Kern <robert.kern@gmail.com>2007-12-04 08:02:06 +0000
commit67bc27b8ebb6031c9379632f40493d0dd5f0f08c (patch)
tree6cad5a60ecf3bcec8ccb6b51fb7d19d02db3debc /numpy/distutils/fcompiler/intel.py
parent941a93af7f8ea0ac5f1bda1c2b3c46865d8e8360 (diff)
downloadnumpy-67bc27b8ebb6031c9379632f40493d0dd5f0f08c.tar.gz
Typo.
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r--numpy/distutils/fcompiler/intel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py
index b226c5e20..ba93538ac 100644
--- a/numpy/distutils/fcompiler/intel.py
+++ b/numpy/distutils/fcompiler/intel.py
@@ -114,7 +114,7 @@ class IntelFCompiler(BaseIntelFCompiler):
opt.remove('-shared')
except ValueError:
idx = 0
- opt[idx:idx] = ['-dynamiclib', 'Wl,-undefined,dynamic_lookup']
+ opt[idx:idx] = ['-dynamiclib', '-Wl,-undefined,dynamic_lookup']
return opt
class IntelItaniumFCompiler(IntelFCompiler):