From: Éric Araujo Date: Tue, 7 Sep 2010 22:17:04 +0000 (+0000) Subject: Merged revisions 84608 via svnmerge from X-Git-Tag: v3.1.3rc1~266 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7cf83134f53972de1a5ae42bd4804999e45ade1b;p=thirdparty%2FPython%2Fcpython.git Merged revisions 84608 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84608 | eric.araujo | 2010-09-08 00:11:52 +0200 (mer., 08 sept. 2010) | 2 lines Fix eon-old bug in build_clib options (#1718574) ........ --- diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index 258d7c10be48..428011a64dce 100644 --- a/Lib/distutils/command/build_clib.py +++ b/Lib/distutils/command/build_clib.py @@ -32,9 +32,9 @@ class build_clib(Command): description = "build C/C++ libraries used by Python extensions" user_options = [ - ('build-clib', 'b', + ('build-clib=', 'b', "directory to build C/C++ libraries to"), - ('build-temp', 't', + ('build-temp=', 't', "directory to put temporary build by-products"), ('debug', 'g', "compile with debugging information"),