[pypy-commit] pypy py3.5-mac-embedding: typo

mattip pypy.commits at gmail.com
Thu Oct 26 12:00:51 EDT 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.5-mac-embedding
Changeset: r92853:8d9cebe3885b
Date: 2017-10-26 18:31 +0300
http://bitbucket.org/pypy/pypy/changeset/8d9cebe3885b/

Log:	typo

diff --git a/pypy/goal/targetpypystandalone.py b/pypy/goal/targetpypystandalone.py
--- a/pypy/goal/targetpypystandalone.py
+++ b/pypy/goal/targetpypystandalone.py
@@ -364,7 +364,7 @@
         def task_build_cffi_imports(self):
             ''' Use cffi to compile cffi interfaces to modules'''
             filename = os.path.join(pypydir, 'tool', 'build_cffi_imports.py')
-            if system.platform == 'darwin':
+            if sys.platform == 'darwin':
                 argv = [filename, '--embed-dependencies']
             else:
                 argv = [filename,]


More information about the pypy-commit mailing list