File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,16 @@ check-env:
2121
2222compile : check-env clean
2323 echo " DEF DEBUG = 0" > asyncpg/protocol/__debug.pxi
24- cython asyncpg/protocol/protocol.pyx; rm asyncpg/protocol/__debug.pxi
24+ $(PYTHON ) -m cython asyncpg/protocol/protocol.pyx
25+ rm asyncpg/protocol/__debug.pxi
2526 @echo " $$ CYTHON_BUILD_PATCH_SCRIPT" | $(PYTHON )
2627 $(PYTHON ) setup.py build_ext --inplace
2728
2829
2930debug : check-env clean
3031 echo " DEF DEBUG = 1" > asyncpg/protocol/__debug.pxi
31- cython -a -X linetrace=True asyncpg/protocol/protocol.pyx; rm asyncpg/protocol/__debug.pxi
32+ $(PYTHON ) -m cython -a -X linetrace=True asyncpg/protocol/protocol.pyx
33+ rm asyncpg/protocol/__debug.pxi
3234 @echo " $$ CYTHON_BUILD_PATCH_SCRIPT" | $(PYTHON )
3335 CFLAGS=" ${CFLAGS} -DCYTHON_TRACE=1 -DCYTHON_TRACE_NOGIL=1" \
3436 $(PYTHON ) setup.py build_ext --inplace --debug
You can’t perform that action at this time.
0 commit comments