[pypy-commit] pypy default: #3151

arigo pypy.commits at gmail.com
Tue Jan 14 01:54:52 EST 2020


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r98527:21d9fdb98805
Date: 2020-01-14 07:53 +0100
http://bitbucket.org/pypy/pypy/changeset/21d9fdb98805/

Log:	#3151

	Small fix in the Makefile

diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,6 @@
 all: pypy-c cffi_imports
 
 PYPY_EXECUTABLE := $(shell which pypy)
-URAM := $(shell python -c "import sys; print 4.5 if sys.maxint>1<<32 else 2.5")
 
 ifeq ($(PYPY_EXECUTABLE),)
 RUNINTERP = python
@@ -10,6 +9,8 @@
 RUNINTERP = $(PYPY_EXECUTABLE)
 endif
 
+URAM := $(shell $(RUNINTERP) -c "import sys; print 4.5 if sys.maxint>1<<32 else 2.5")
+
 .PHONY: pypy-c cffi_imports
 
 pypy-c:


More information about the pypy-commit mailing list