diff options
author | David Cournapeau <cournape@gmail.com> | 2008-11-17 12:08:38 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-11-17 12:08:38 +0000 |
commit | 3d745a673576835739c3ff0e402791c77b998e3a (patch) | |
tree | a2db845b5378706ca4871136309f4e8fce172247 /numpy | |
parent | 0999c7cf8553b7427775f63841c5f6e016db8008 (diff) | |
download | numpy-3d745a673576835739c3ff0e402791c77b998e3a.tar.gz |
Disable .rc generation for manifest: having the xml file in the same dir as the _configtest.exe is enough for now.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/command/config.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/numpy/distutils/command/config.py b/numpy/distutils/command/config.py index aeea0d931..b6b90e6b8 100644 --- a/numpy/distutils/command/config.py +++ b/numpy/distutils/command/config.py @@ -126,12 +126,12 @@ class config(old_config): self.temp_files.append(manxml) man.write(manxml) man.close() - # Write the rc file - manrc = manifest_rc(manifest_name(self), "exe") - rc = open(rc_name(self), "w") - self.temp_files.append(manrc) - rc.write(manrc) - rc.close() + # # Write the rc file + # manrc = manifest_rc(manifest_name(self), "exe") + # rc = open(rc_name(self), "w") + # self.temp_files.append(manrc) + # rc.write(manrc) + # rc.close() return self._wrap_method(old_config._link,lang, (body, headers, include_dirs, libraries, library_dirs, lang)) |