diff options
author | Marc-André Lemburg <mal@egenix.com> | 2002-01-31 18:56:00 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2002-01-31 18:56:00 (GMT) |
commit | 2544f51036c51d87be53f6a5e35e867c8333378a (patch) | |
tree | 5f745a0cd4c6d2473af7c6227c9ae5508bf8ffda /Lib/distutils/command/bdist.py | |
parent | c318260a7121149153dcfc213a36ac81d8266875 (diff) | |
download | cpython-2544f51036c51d87be53f6a5e35e867c8333378a.zip cpython-2544f51036c51d87be53f6a5e35e867c8333378a.tar.gz cpython-2544f51036c51d87be53f6a5e35e867c8333378a.tar.bz2 |
OS/2 patches by Andrew I MacIntyre for distutils.
Closes patch #435381.
Diffstat (limited to 'Lib/distutils/command/bdist.py')
-rw-r--r-- | Lib/distutils/command/bdist.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py index fc18bd0..68609f3 100644 --- a/Lib/distutils/command/bdist.py +++ b/Lib/distutils/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', |