diff options
| author | Marc-André Lemburg <mal@egenix.com> | 2002-01-31 18:56:00 +0000 |
|---|---|---|
| committer | Marc-André Lemburg <mal@egenix.com> | 2002-01-31 18:56:00 +0000 |
| commit | d6951f1f6bab52d73341651f62cda2dd3f85433c (patch) | |
| tree | c2b402a507d955fef523aa8c5bff8dacd1b2c143 /command/bdist.py | |
| parent | 9b2752c213bc110bd6b5a123c3aa67314d772711 (diff) | |
| download | python-setuptools-git-d6951f1f6bab52d73341651f62cda2dd3f85433c.tar.gz | |
OS/2 patches by Andrew I MacIntyre for distutils.
Closes patch #435381.
Diffstat (limited to 'command/bdist.py')
| -rw-r--r-- | command/bdist.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/command/bdist.py b/command/bdist.py index fc18bd0c..68609f34 100644 --- a/command/bdist.py +++ b/command/bdist.py @@ -57,7 +57,8 @@ class bdist (Command): # This won't do in reality: will need to distinguish RPM-ish Linux, # Debian-ish Linux, Solaris, FreeBSD, ..., Windows, Mac OS. default_format = { 'posix': 'gztar', - 'nt': 'zip', } + 'nt': 'zip', + 'os2': 'zip', } # Establish the preferred order (for the --help-formats option). format_commands = ['rpm', 'gztar', 'bztar', 'ztar', 'tar', |
