summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2010-09-07 22:11:52 +0000
committerÉric Araujo <merwok@netwok.org>2010-09-07 22:11:52 +0000
commit357175ff130b04fd64340d3bd4783bfb3801d889 (patch)
tree68732d6f72a14b27ba7fe0842da8a99381d677c7
parent783eea722bf6e7c9d679d5230cd327e68b4c55f7 (diff)
downloadcpython-git-357175ff130b04fd64340d3bd4783bfb3801d889.tar.gz
Fix eon-old bug in build_clib options (#1718574)
-rw-r--r--Lib/distutils/command/build_clib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py
index 258d7c10be..428011a64d 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"),