From: Greg Ward Date: Sun, 28 May 2000 23:49:03 +0000 (+0000) Subject: Changed order so 'clean' is right after the 'build' commands. X-Git-Tag: v2.0b1~1644 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2129032bc6a17040d5652b14d8c8bb6c80fc3857;p=thirdparty%2FPython%2Fcpython.git Changed order so 'clean' is right after the 'build' commands. --- diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index 56c26fe151bb..95bce8d8c11a 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -10,12 +10,12 @@ __all__ = ['build', 'build_ext', 'build_clib', 'build_scripts', + 'clean', 'install', 'install_lib', 'install_headers', 'install_scripts', 'install_data', - 'clean', 'sdist', 'bdist', 'bdist_dumb',