]> granicus.if.org Git - python/commitdiff
Fix typo I introduced in f93acf8844ec
authorÉric Araujo <merwok@netwok.org>
Tue, 30 Aug 2011 20:13:21 +0000 (22:13 +0200)
committerÉric Araujo <merwok@netwok.org>
Tue, 30 Aug 2011 20:13:21 +0000 (22:13 +0200)
Lib/packaging/command/build_ext.py

index c16b116afddb64b4c92a70aaa482dbe8401635ac..fa8d11f39c49d2a26a370f8f2d33f3af9bff1073 100644 (file)
@@ -650,7 +650,7 @@ class build_ext(Command):
 
         else:
             if sysconfig.get_config_var('Py_ENABLE_SHARED'):
-                template = 'python%d%d' + sys.abiflags
+                template = 'python%d.%d' + sys.abiflags
                 pythonlib = template % sys.version_info[:2]
                 return ext.libraries + [pythonlib]
             else: