[Python-checkins] distutils2: Fix yet another RPM leftover

tarek.ziade python-checkins at python.org
Thu Jun 24 10:05:21 CEST 2010


tarek.ziade pushed 92a135d94221 to distutils2:

http://hg.python.org/distutils2/rev/92a135d94221
changeset:   218:92a135d94221
user:        ?ric Araujo <merwok at netwok.org>
date:        Fri Jun 04 21:05:03 2010 +0200
summary:     Fix yet another RPM leftover
files:       src/distutils2/command/bdist.py

diff --git a/src/distutils2/command/bdist.py b/src/distutils2/command/bdist.py
--- a/src/distutils2/command/bdist.py
+++ b/src/distutils2/command/bdist.py
@@ -62,7 +62,7 @@
                       'os2': 'zip'}
 
     # Establish the preferred order (for the --help-formats option).
-    format_commands = ['rpm', 'gztar', 'bztar', 'ztar', 'tar',
+    format_commands = ['gztar', 'bztar', 'ztar', 'tar',
                        'wininst', 'zip', 'msi']
 
     # And the real information.
@@ -96,7 +96,7 @@
 
         # 'bdist_base' -- parent of per-built-distribution-format
         # temporary directories (eg. we'll probably have
-        # "build/bdist.<plat>/dumb", "build/bdist.<plat>/rpm", etc.)
+        # "build/bdist.<plat>/dumb", etc.)
         if self.bdist_base is None:
             build_base = self.get_finalized_command('build').build_base
             self.bdist_base = os.path.join(build_base,

--
Repository URL: http://hg.python.org/distutils2


More information about the Python-checkins mailing list