Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r1297:5877e7273c75
Date: 2013-07-28 21:18 +0200
http://bitbucket.org/cffi/cffi/changeset/5877e7273c75/

Log:    We started to add bug fixes to libffi_msvc.

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -55,10 +55,7 @@
     COMPILE_LIBFFI = None
 
 if COMPILE_LIBFFI:
-    assert os.path.isdir(COMPILE_LIBFFI), (
-        "On Windows, you need to copy the directory "
-        "Modules\\_ctypes\\libffi_msvc from the CPython sources (2.6 or 2.7) "
-        "into the top-level directory.")
+    assert os.path.isdir(COMPILE_LIBFFI), "directory not found!"
     include_dirs[:] = [COMPILE_LIBFFI]
     libraries[:] = []
     _filenames = [filename.lower() for filename in os.listdir(COMPILE_LIBFFI)]
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to