Author: Philip Jenvey <pjen...@underboss.org>
Branch: py3.3
Changeset: r72580:871e353f33fc
Date: 2014-07-27 14:06 -0700
http://bitbucket.org/pypy/pypy/changeset/871e353f33fc/

Log:    hopefully fix translation (tscmp.c:5:10: fatal error: 'tscmp.h' file
        not found)

diff --git a/pypy/module/operator/tscmp.py b/pypy/module/operator/tscmp.py
--- a/pypy/module/operator/tscmp.py
+++ b/pypy/module/operator/tscmp.py
@@ -12,6 +12,7 @@
 cwd = py.path.local(__file__).dirpath()
 eci = ExternalCompilationInfo(
     includes=[cwd.join('tscmp.h')],
+    include_dirs=[str(cwd)],
     separate_module_files=[cwd.join('tscmp.c')],
     export_symbols=['pypy_tscmp'])
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to