[pypy-commit] pypy default: no ncurses on windowss

mattip noreply at buildbot.pypy.org
Sat Apr 6 07:39:50 CEST 2013


Author: mattip
Branch: 
Changeset: r63091:79414fd8306a
Date: 2013-04-06 07:41 +0200
http://bitbucket.org/pypy/pypy/changeset/79414fd8306a/

Log:	no ncurses on windowss

diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -67,7 +67,8 @@
                 'Bogus path: %r does not exist (see docstring for more info)'
                 % (os.path.dirname(str(pypy_c)),))
     subprocess.check_call([str(pypy_c), '-c', 'import _sqlite3'])
-    subprocess.check_call([str(pypy_c), '-c', 'import _curses'])
+    if not sys.platform == 'win32':
+        subprocess.check_call([str(pypy_c), '-c', 'import _curses'])
     if sys.platform == 'win32' and not rename_pypy_c.lower().endswith('.exe'):
         rename_pypy_c += '.exe'
     binaries = [(pypy_c, rename_pypy_c)]


More information about the pypy-commit mailing list