Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r92043:dd95b2eeb5ac
Date: 2017-08-02 18:31 +0200
http://bitbucket.org/pypy/pypy/changeset/dd95b2eeb5ac/

Log:    Fix the Makefile to produce the pypy-c inside pypy/goal/, like we
        normally expect and document

diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@
 RUNINTERP = $(PYPY_EXECUTABLE)
 endif
 
-.PHONY: cffi_imports
+.PHONY: pypy-c cffi_imports
 
 pypy-c:
        @echo
@@ -32,7 +32,7 @@
        @echo 
"===================================================================="
        @echo
        @sleep 5
-       $(RUNINTERP) rpython/bin/rpython -Ojit pypy/goal/targetpypystandalone.py
+       cd pypy/goal && $(RUNINTERP) ../../rpython/bin/rpython -Ojit 
targetpypystandalone.py
 
 # Note: the -jN option, or MAKEFLAGS=-jN, are not usable.  They are
 # replaced with an opaque --jobserver option by the time this Makefile
@@ -40,4 +40,4 @@
 # http://lists.gnu.org/archive/html/help-make/2010-08/msg00106.html
 
 cffi_imports: pypy-c
-       PYTHONPATH=. ./pypy-c pypy/tool/build_cffi_imports.py || /bin/true
+       PYTHONPATH=. pypy/goal/pypy-c pypy/tool/build_cffi_imports.py || 
/bin/true
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to