diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-05-15 23:02:55 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-05-16 23:33:54 +0200 |
| commit | d489a79ccad46dc023add02c2315ca1665727a17 (patch) | |
| tree | 3a47c86f8e2be9bd1cb655235db3f7512be7becf /platform | |
| parent | ef7e6f93278818db0862cfcd2438011c42ffee90 (diff) | |
Cleanup: use loop for bits.
Diffstat (limited to 'platform')
| -rw-r--r-- | platform/windows/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/wscript b/platform/windows/wscript index 074c932eb..725656526 100644 --- a/platform/windows/wscript +++ b/platform/windows/wscript @@ -485,5 +485,5 @@ def build(bld): ('disk', 'Disk Writer'), ] - write_installer(all_tools, 32, bld.env.VERSION, bld.env.DEBUG) - write_installer(all_tools, 64, bld.env.VERSION, bld.env.DEBUG) + for bits in (32, 64): + write_installer(all_tools, bits, bld.env.VERSION, bld.env.DEBUG) |
