diff options
author | Éric Araujo <merwok@netwok.org> | 2010-09-07 22:11:52 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-09-07 22:11:52 (GMT) |
commit | 357175ff130b04fd64340d3bd4783bfb3801d889 (patch) | |
tree | 68732d6f72a14b27ba7fe0842da8a99381d677c7 /Lib/distutils | |
parent | 783eea722bf6e7c9d679d5230cd327e68b4c55f7 (diff) | |
download | cpython-357175ff130b04fd64340d3bd4783bfb3801d889.zip cpython-357175ff130b04fd64340d3bd4783bfb3801d889.tar.gz cpython-357175ff130b04fd64340d3bd4783bfb3801d889.tar.bz2 |
Fix eon-old bug in build_clib options (#1718574)
Diffstat (limited to 'Lib/distutils')
-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"), |