diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-02-21 18:07:58 +0100 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-02-21 18:07:58 +0100 |
commit | dc4170c5bce49cdfacb7aa6e61b573bf39a87673 (patch) | |
tree | 0b978d9af1b9b34d151ca16a51c1a1fbe819ceea /Tools | |
parent | f9caee9ab435d53a920ba9239e9a8fe4fe58976f (diff) | |
parent | dbd3f6173a0dd15c97b60be56cc37ff1cf5487e5 (diff) | |
download | cpython-git-dc4170c5bce49cdfacb7aa6e61b573bf39a87673.tar.gz |
merge 2.6
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 3cdb7588dc..5911773991 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -180,6 +180,8 @@ mingw_lib = os.path.join(srcdir, PCBUILD, "libpython%s%s.a" % (major, minor)) have_mingw = build_mingw_lib(lib_file, def_file, dll_file, mingw_lib) # Determine the target architecture +if os.system("nmake /nologo /c /f msisupport.mak") != 0: + raise RuntimeError("'nmake /f msisupport.mak' failed") dll_path = os.path.join(srcdir, PCBUILD, dll_file) msilib.set_arch_from_file(dll_path) if msilib.pe_type(dll_path) != msilib.pe_type("msisupport.dll"): @@ -377,8 +379,6 @@ def add_ui(db): # UpdateEditIDLE sets the REGISTRY.tcl component into # the installed/uninstalled state according to both the # Extensions and TclTk features. - if os.system("nmake /nologo /c /f msisupport.mak") != 0: - raise RuntimeError("'nmake /f msisupport.mak' failed") add_data(db, "Binary", [("Script", msilib.Binary("msisupport.dll"))]) # See "Custom Action Type 1" if msilib.Win64: |