summaryrefslogtreecommitdiff
path: root/scipy_distutils/gnufcompiler.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2004-02-17 16:14:09 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2004-02-17 16:14:09 +0000
commite252edd12120404b9ef8e9334c4b5659ed6d2726 (patch)
tree3c74f21d74a53f20664974b6c01e3598dad94cbe /scipy_distutils/gnufcompiler.py
parentb94984a29f4e4475eb10e8ad777a00e3ab1b5c5a (diff)
downloadnumpy-e252edd12120404b9ef8e9334c4b5659ed6d2726.tar.gz
Fixed typo
Diffstat (limited to 'scipy_distutils/gnufcompiler.py')
-rw-r--r--scipy_distutils/gnufcompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/gnufcompiler.py b/scipy_distutils/gnufcompiler.py
index 1adfae348..c3687ba75 100644
--- a/scipy_distutils/gnufcompiler.py
+++ b/scipy_distutils/gnufcompiler.py
@@ -48,7 +48,7 @@ class GnuFCompiler(FCompiler):
def get_flags_linker_so(self):
opt = []
if sys.platform=='darwin':
- opt.append('-framework','Python')
+ opt.extend(['-framework','Python'])
else:
opt.append("-shared")
if sys.platform[:5]=='sunos':