]> granicus.if.org Git - python/commitdiff
Merged revisions 84608 via svnmerge from
authorÉric Araujo <merwok@netwok.org>
Tue, 7 Sep 2010 22:18:34 +0000 (22:18 +0000)
committerÉric Araujo <merwok@netwok.org>
Tue, 7 Sep 2010 22:18:34 +0000 (22:18 +0000)
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)
........

Lib/distutils/command/build_clib.py

index 8d49de75e12c6c1939526c260f4d3c9190a5471e..98a1726ffa8dd9d3e44b7fac3bd3c08e25ded734 100644 (file)
@@ -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"),