[pypy-commit] pypy win64-stage1: resolved another missing include_dirs entry, for cpyext.

ctismer noreply at buildbot.pypy.org
Sun Dec 4 01:23:39 CET 2011


Author: Christian Tismer <tismer at stackless.com>
Branch: win64-stage1
Changeset: r50100:dc30c26f6f21
Date: 2011-12-04 01:15 +0100
http://bitbucket.org/pypy/pypy/changeset/dc30c26f6f21/

Log:	resolved another missing include_dirs entry, for cpyext. (hit by
	chance, forgot to disable modules)

diff --git a/pypy/module/cpyext/api.py b/pypy/module/cpyext/api.py
--- a/pypy/module/cpyext/api.py
+++ b/pypy/module/cpyext/api.py
@@ -45,8 +45,10 @@
 pypydir = py.path.local(autopath.pypydir)
 include_dir = pypydir / 'module' / 'cpyext' / 'include'
 source_dir = pypydir / 'module' / 'cpyext' / 'src'
+signed_dir = pypydir / 'translator' / 'c' / 'src'
 include_dirs = [
     include_dir,
+    signed_dir,
     udir,
     ]
 


More information about the pypy-commit mailing list