diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-07-27 22:44:38 +0300 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2020-07-27 22:44:38 +0300 |
commit | f6d31967a18399cf133970babda9fd24cc42af1e (patch) | |
tree | 253a52982628c813a7cdacf5cac50c89e83ffa23 /pypy/goal | |
parent | typo (diff) | |
download | pypy-f6d31967a18399cf133970babda9fd24cc42af1e.tar.gz pypy-f6d31967a18399cf133970babda9fd24cc42af1e.tar.bz2 pypy-f6d31967a18399cf133970babda9fd24cc42af1e.zip |
move lib_pypy/tools -> lib_pypy/pypy_tools: otherwise"tools" appears on the sys.path
Diffstat (limited to 'pypy/goal')
-rw-r--r-- | pypy/goal/targetpypystandalone.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pypy/goal/targetpypystandalone.py b/pypy/goal/targetpypystandalone.py index 3efe701c40..94a0ac5f28 100644 --- a/pypy/goal/targetpypystandalone.py +++ b/pypy/goal/targetpypystandalone.py @@ -350,7 +350,7 @@ class PyPyTarget(object): @taskdef([compile_goal], "Create cffi bindings for modules") def task_build_cffi_imports(self): ''' Use cffi to compile cffi interfaces to modules''' - filename = os.path.join(pypydir, '..', 'lib_pypy', 'tools', + filename = os.path.join(pypydir, '..', 'lib_pypy', 'pypy_tools', 'build_cffi_imports.py') if sys.platform == 'darwin': argv = [filename, '--embed-dependencies'] |