diff options
author | David Cournapeau <cournape@gmail.com> | 2008-11-16 11:45:09 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-11-16 11:45:09 +0000 |
commit | f9e17289abd34cc65efd25c99931eed6072e7cbe (patch) | |
tree | 989e4ddced6d387becf40bab9081291e7970b029 /numpy/distutils/mingw32ccompiler.py | |
parent | c74c27396eff683e66c02bb0ade0745378d02f1d (diff) | |
download | numpy-f9e17289abd34cc65efd25c99931eed6072e7cbe.tar.gz |
Forgot to change argument of manifest_rc.
Diffstat (limited to 'numpy/distutils/mingw32ccompiler.py')
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index 566183a80..3171dbf91 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -273,7 +273,7 @@ def msvc_manifest_xml(maj, min): return template % {'fullver': fullver, 'maj': maj, 'min': min} -def manifest_rc(biname, type='dll'): +def manifest_rc(name, type='dll'): """Return the rc file used to generate the res file which will be embedded as manifest for given manifest file name, of given type ('dll' or 'exe'). |