diff options
author | Éric Araujo <merwok@netwok.org> | 2010-09-07 22:17:04 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-09-07 22:17:04 (GMT) |
commit | 7cf83134f53972de1a5ae42bd4804999e45ade1b (patch) | |
tree | b77489b6ccc9e051d82f77fb67d4c425d9ac07f4 /Lib | |
parent | dae0c63fc8b2b35d0e379e74afd5d6684a74323e (diff) | |
download | cpython-7cf83134f53972de1a5ae42bd4804999e45ade1b.zip cpython-7cf83134f53972de1a5ae42bd4804999e45ade1b.tar.gz cpython-7cf83134f53972de1a5ae42bd4804999e45ade1b.tar.bz2 |
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)
........
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/build_clib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index 258d7c1..428011a 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"), |